Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
246 views
in Technique[技术] by (71.8m points)

android - Google maps v2 doesn't showing after publishing in play market

i have some problem, my app works fine, but when i load it in Play market, maps does not works correctly. I make next:

  1. Get SHA1 keytool -list -v -keystore C:UserName/.android/debug.keystore -alias androiddebugkey -storepass android -keypass android
  2. In Google console i create API KEY. SHA1;com.kostya.app
  3. Rigth click on project - Android tools - Export signed application packuage
  4. Create new keystore and new *.apk file.
  5. Load it into market.

Where is my mistake? I read this article. Together we can create nice tutorial how to sign app using google maps v2. How to test application at once after loading in play market, without weithing some ours.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

When your are creating keystore for creating signed apk you have to do this.

  1. change debug.keystore to your created keystore
  2. change alias name to your project name
  3. set the password the same like in your created keystore (not android as in debug mode)

    keytool -list -v -keystore ~/.android/ YOUR_KEYSTORE -alias YOUR_PROJECT_NAME

more help find here


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...