Google Play update
If your app uses Play App Signing, Google retains the app-signing key. Upload the key you use to sign submissions sent to Play and include the Play Console certificate fingerprints for review.
Most Play customersAn APK signature is more than a release stamp. It is the identity Android uses to decide whether a new build is allowed to replace the one already installed.
When Defract protects an APK, the resulting file must be signed again. Android normally accepts it as an update only when its signer matches the installed application, or when Android can validate an authorized signing lineage.
A certificate is not a private key. A certificate fingerprint lets us compare identities, but signing the protected APK requires access to the corresponding private key through a keystore or an appropriate Play upload-key workflow.
If your app uses Play App Signing, Google retains the app-signing key. Upload the key you use to sign submissions sent to Play and include the Play Console certificate fingerprints for review.
Most Play customersProvide the same private signing key used for the currently installed application. A different key normally creates a separate, non-updatable identity.
Use Defract’s evaluation signer only when no production update path is required and you can install the test APK from scratch.
Use the Android SDK’s apksigner to inspect the APK that users currently receive:
apksigner verify --print-certs your-app.apkFor a Java keystore, keytool can print the certificate associated with an alias:
keytool -list -v -keystore release.jks -alias your-key-aliasDo not paste private keys or keystore passwords into a message. Fingerprints are safe to compare; secrets belong only in the encrypted signing-material flow.
The evaluation signer will not match your existing production app. Android or Google Play will normally reject that APK as an update. You may need to uninstall the current app before installing the test build, which removes local application data.
The portal blocks this option for profiles marked as Play Store or existing direct-distribution updates. It remains available for explicit evaluation profiles after acknowledgement.
Android’s guide to keys, certificates, signing configurations, and release builds.
Google Play Console HelpUse Play App SigningHow Google protects an app-signing key and uses a separate upload key.
Android DevelopersVerify APK signaturesOfficial apksigner syntax for verifying APKs and printing certificate details.
Open the profile and compare its APK signer, distribution channel, and uploaded certificate before submission.
Choose a profile