Obtaining Android Public Map API Key
Posted
by
TheHighLifeSon
on Stack Overflow
See other posts from Stack Overflow
or by TheHighLifeSon
Published on 2011-06-24T00:02:55Z
Indexed on
2011/06/24
0:22 UTC
Read the original article
Hit count: 120
android
|google-maps
I have been trying to obtain a public map api key for my Android app. However the public key that I receive from Google does not work.
I have been using the following steps:
Obtaining Release Public Map API Key
1.Obtain Private Key:
- Use Export of Eclipse to sign release application and create new keystore
2.Obtain MD5 certificate:
using alias and keystore set up
use keytool in Java directory: keytool -list -alias poly_alias -keystore
copy MD5 certificate
3.Obtain API Map Key:
- Visit http://code.google.com/android/maps-api-signup.html and enter MD5 certificate
- copy key
4.Use New Map API Key:
- insert new map key for string in strings.xml for string mapApiKey
Does anyone have any suggestions on what I am doing wrong?
© Stack Overflow or respective owner