Recently, I was working with Android Maps V2. I came across debug.keystore
and release.keystore
. What is the difference between them? Why do we have to use both?
debug.keystore is merely for developing and testing purposes, so using that you can't release your app to Google Play using that only.
Caution: You should not release your application to the public (via any source) when signed with the debug certificate.
release.keystore is required only when you want to release your app to any app store.
For more information, see Signing Your Applications, subsection Signing in Release Mode.
You can work on developing the Android app with debug.keystore
. The release.keystore
will be need when your app is ready to be submitted as an app on Play Store.
debug.keystore you call for testing purposes for developers, because it contains the default alias and default key password and also by using this you can not publish your app into the play store.
release.keystore you call for the final app certification keystore. This keystore has its own alias and own key password. And for every new publish of your app, you must generate an signed APK file by using this keystore.
For more information, see Signing Your Applications.
debug.keystore is used at the time of development, where as release.keystore will be used at product release... link
You cannot publish your app to Google Play with debug.keystore
, and users won't be able to download your app.
debug.keystore is used to generate Google Map API V2 key for Debug purpose . release.keystore is used to generate map key before uploading app to Google Play.
© 2022 - 2024 — McMap. All rights reserved.