Reputation: 646
I have a read a dozen of questions and answers and also watched some YouTube Videos. But my Android App with Google Maps Release Version aint working.
What I have done until now:
The string is linked in the manifest file. But its still not working...! Any ideas?
Upvotes: 3
Views: 3572
Reputation: 1838
There are two different keys one for debug and another for release.
Use this link to generate the release SHA-1 key.
http://www.truiton.com/2015/04/obtaining-sha1-fingerprint-android-keystore/.
Here is the official documentation.
https://support.google.com/cloud/answer/6158862?hl=en#creating-android-api-keys
Upvotes: 3
Reputation: 4021
When you try to release APK, Use SHA-1 of the KeyStore not default or current SHA-1 of WorkSpace.
Some developer uses testing API key for app which is generated for default keystore, but not it don't know for release version need to generate new API key accouding new SHA-1 of keystore.
So Generate New API key for releasing APK (KeyStore SHA-1).
Upvotes: 1