Play App Signing splits app signing into two jobs: you keep a key, Google keeps a key. In 2026 a third key joined them — the post-quantum half of the new hybrid signature — which is why the fingerprints you register with Google Maps, OAuth or Facebook Login are no longer a single value. Here is the full key model from Google's own Play Console documentation, the exact console paths, and the two operations that matter most in practice: the annual app signing key upgrade and the upload key reset.

What you are solving today: know which key does what, set up Play App Signing for a new or existing app, register the right fingerprints (up to three), upgrade an app signing key, and reset a lost upload key without losing the app or the listing.


Two keys, three with quantum-ready signing

Per Use Play App Signing, every app under Play App Signing deals with distinct keys, each with its own holder, format and recovery rules.

For maximum security your upload key and your app signing key should be different keys. And when Google signs your APKs with the app signing key it uses apksigner to add two stamps to the manifest, com.android.stamp.source and com.android.stamp.type, so the APKs stay traceable to the original signer.


New app: quantum-ready signing is now the default

  1. Create the app. It is automatically enrolled in quantum-ready, hybrid signing with Google-generated keys. Google also generates a separate classical key for the signature blocks recognised on Android 16 and below.
  2. Create an upload key — generate a keystore in Android Studio, or use the Java keytool utility from the command line.
  3. Upload your app bundle. Enrollment happens at upload; there is no separate opt-in step.
  4. Optional: change the app signing key if you would rather manage it yourself. Go to Protected with Play → Play Store distribution → Go to Play app signing and click Change the app signing key. This is only possible before there is a release rolled out on the open testing track or the production track, and you can either use the app signing key of another app in the same developer account or provide a copy of your own key.

Existing app: enroll through the PEPK tool

If you still sign and upload your own APKs, you can migrate to Play App Signing to get app bundles and the Play enhancements that come with them.

  1. In Play Console, go to Protected with Play → Play Store distribution → Go to Play app signing and accept the terms of service if you have not already.
  2. Transfer a copy of your original key. Download the PEPK tool and follow the unified step-by-step instructions to encrypt and upload your existing app signing key from any repository.
  3. Create a new upload key (recommended). Generate a new key in Android Studio and register its certificate in Play Console.

Register up to three fingerprints with your API providers

Maps, OAuth and Facebook Login authenticate your app by the fingerprint of the app signing key. Because Google signs the final APK, you must register the Google-held app signing key fingerprint with those providers — registering only your local upload key is the classic post-migration break.

  1. Go to Protected with Play → Play Store distribution → Go to Play app signing.
  2. Scroll to the App signing key section and copy the SHA-1 or SHA-256 fingerprints.
  3. If your app uses quantum-ready hybrid signing, copy the fingerprints of three keys and register every one of them: the new classical key and the PQC key used on newer devices, plus the classical key used on older devices.
  4. Paste them into each provider's console (for example Google Cloud Console). If you use Android App Links, update assetlinks.json with the same fingerprints.

Upgrade the app signing key — once a year, when you need it

If the app signing key is compromised, or you want a cryptographically stronger key, you can request an annual key upgrade. The upgrade applies to all installs on Android 17 (API level 37) and above, and enforcement differs by platform version:

Shared-data caveat: because the upgraded key is not enforced on API 32 and below, if you use the same key across several apps to share data, those older Android versions will only recognise the legacy key for features such as custom permission sharing.

How to upgrade:

  1. Go to Protected with Play → Play Store distribution → Go to Play app signing.
  2. Under the App signing key section, click Upgrade key.
  3. Choose your path: let Google Play generate a new app signing key (recommended), use the same app signing key as another app in this developer account, or provide a copy of your app signing key.
  4. Click Save.
  5. Register the new fingerprints with your API providers — with quantum-ready signing that means two new keys, the new classical key and the new PQC key.

Reset a lost upload key

A lost or suspected-compromised upload key does not lock you out of your app.

  1. Create a new upload key in Android Studio.
  2. Export the certificate to PEM format:
keytool -export -rfc -keystore upload-keystore.jks -alias upload -file upload_certificate.pem
  1. In Play Console, go to Protected with Play → Play Store protection → Manage Play app signing.
  2. In the Upload key certificate section, click Request upload key reset, enter the reason for the reset, upload your upload_certificate.pem file and click Request.

What this means when an account or an app changes hands

The app signing key is held by Google and travels with the app, so handover work concentrates on the upload keystore and on the services that trust your fingerprints.

Two related walkthroughs on this blog: the Google Play account and app transfer checklist and the Play Console access control tutorial.


Distributing outside Google Play, and testing what users actually get


Pre-flight checklist


The one-line version

You sign with the upload key, Google signs with the app signing key, and Android 17 adds post-quantum keys into the mix — so keep the upload keystore backed up, register every app signing key fingerprint with your API providers, use the annual upgrade path when you need a stronger key, and reset the upload key in Play Console if it is ever lost.


Sources