Moving Maps Api Project To A Different Development Computer. Do I Need A New Api Key?
I am writing an App in Android 5.1 with Android Studio that uses the Google Maps API v2. I copied the all the project's files and moved them to a new computer. Then I did a build f
Solution 1:
Nope. It turns out I don't need a new key for the new computer. All that is needed is to add this certificate fingerprint from the new computer to the 'Allowed Android Applications" under Credentials in the Google Developer console.
And it works!
Solution 2:
It seems you need to add/Verify SHA1 key obtained from your keystore file. If you are using debug.keystore file then from JDK --> BIN folder
keytool -list -v -keystore ~/.android/debug.keystore -alias androiddebugkey -storepass android -keypass android
and verify if generated key mactches to the SHA1 you added to Google API Console
Post a Comment for "Moving Maps Api Project To A Different Development Computer. Do I Need A New Api Key?"