Skip to content

Publishing an App to Google Play Store

Publishing an App to Google Play Store#

For Google Play, prefer publishing an Android App Bundle (.aab) with Play App Signing.

Build a Signed Release#

  1. In Android Studio, select Build > Generate Signed Bundle / APK.
  2. Select Android App Bundle for Google Play releases.
  3. Choose or create an upload keystore.
  4. Select the release build variant.
  5. Build the signed bundle.

Android Studio handles the signing flow for normal releases. Do not follow old instructions that manually run zipalign against app-release-unaligned.apk.

Update the Version#

You need to update your versionCode and versionName. In Gradle, set them in the module build file:

defaultConfig {
    versionCode 6
    versionName "1.0.5"
}

Sources#