Google Maps Shows Up Grey
I know this has been asked before but I have read/tested for hours and I can't get my maps to show up! I generated the md5 and registered it which gave me the key I use in the code
Solution 1:
Turns out that I needed to use android.permission.INTERNET
not android.permission.Internet
! It would be nice if Google could have given an error about missing permissions or something useful. It would have saved me hours and hours of work!
Solution 2:
I will provide a check list. please ensure these things are correctly followed.
- Build Target platform used: It should be of Google API
- Emulator: You should use emulator of target Google not Android.
- MD5 Key: It should be generated from the same machine in which you are compiling the application. Also follow how to get mapview on the application detailed in this link: http://mobiforge.com/developing/story/using-google-maps-android
Solution 3:
To get the app working in the emulator, then using an API key key generated from the debug keystore is OK.
To run the app on a phone you need a different Google API key; this must be generated from a private keystore which you have explicitly signed.
See section 1 of this link Signing Your Applications for details
Post a Comment for "Google Maps Shows Up Grey"