Android releases often look automated from a distance: CI builds the AAB, signs it, and uploads it.

In practice, a surprising number of release-critical checks still depend on somebody remembering them at the right moment.

The recurring pain points I see are:

My current conclusion is that a release checklist should not live only in someone's head or in a document. The highest-value checks should run against the actual signed release artifact and produce evidence that can be reviewed.

A workflow I find useful is:

  1. Build the release AAB.
  2. Verify its signing identity and release configuration.
  3. Generate and install the device-specific APK set.
  4. Exercise the critical flows on the minified build.
  5. Archive the artifact hash, signing information, and check results with the release record.

What is the one release step your team still handles manually because automation has been unreliable, difficult to maintain, or simply never prioritized?

I'm especially interested in the checks that pass in CI but still fail after a real upload or production install.


Disclosure: I build ADB Pro, an Android Studio plugin for AAB, signing, release-readiness, R8, and related workflows. This post is intended to collect practical release-process gaps, not to replace your existing tooling.