Hi,
I followed this guide here perfectly and have gone through it again but when I run the program on my google avd the page loads but only grey tiles appear and it doesn't show a map which it should.
Does anyone have any ideas?
Thanks
Hi,
I followed this guide here perfectly and have gone through it again but when I run the program on my google avd the page loads but only grey tiles appear and it doesn't show a map which it should.
Does anyone have any ideas?
Thanks
You either have the wrong value for android:apiKey
in your MapView
, or you do not have the INTERNET
permission, or you do not have Internet access.
If you're are using the debug keystore to sign your app you need to generate a key for it too, in addition to the cert you plan to use for production.
I was facing the same issue a couple of days ago and figured out that something related to APK signing was acting weird. The solution was to set the “Custom debug keystore” setting (empty by default) to the same value as the “Default debug keystore” in the Eclipse preferences.
I had the same problem : grey tiles and not map. My solution was to move : < uses-permission android:name="android.permission.INTERNET" /> outside < application>< /application>; it works now ! I hope it can help anybody !