How to get google map v2 api key for collaboration

Sorry my english is not good

I have a Probleam with google map api v2 key. I work with my team. and we need only one api key for the project (Android project). is it possible? or should all members of my team generate an api key to run a google map?

+4
source share
2 answers

You can use the same API key provided that you sign the application with the same .apk signature key.

By default, debug.keystore, which is used to sign debug versions of your application, is automatically generated by the tools, and it is different for each installation. You will need to share the debug.keystore file between your team members and configure your tools to use it. In Eclipse, it is configured in Settings -> Android -> Build -> Custom debug keystore.

Of course, you will need a different API key for the version of the application signed for release.

+5
source

use this command to generate the SHA key

C:\Program Files\Java\jdk1.6.0_20\bin>keytool.exe -list -v -alias androiddebugkey -keystore C:\Users\DON\.android\debug.keystore -storepass android -keypass android 

DON, my system name is fine.

  and follow this tutorial http://www.vogella.com/articles/AndroidGoogleMaps/article.html and further more u want https://developers.google.com/maps/documentation/android/ https://developers.google.com/maps/documentation/javascript/v2/ 
+1
source

Source: https://habr.com/ru/post/1496080/


All Articles