im trying to implement MapView example which is defined on Android Hello Views example but now im facing Failed to find provider info for com.google.settings error...
Any idea why this is happening???
|
im trying to implement MapView example which is defined on Android Hello Views example but now im facing Failed to find provider info for com.google.settings error... Any idea why this is happening??? | |||||||
feedback
|
|
The MapView example doesn't set API key by default. So you must set it. Here is step by step:
Note:
More detail at http://d.android.com/guide/tutorials/views/hello-mapview.html | |||
|
feedback
|
|
If you've made sure you have Android build tools use different certificates for debug builds and for release builds. If you've generated MD5 checksum and API key for release certificate (the one that you use in "Export Android Application" wizard to generate .apk), it won't work in debug builds--and vice versa. You can find out where your debug keystore is located in Eclipse's Preferences > Android > Build page. You can generate MD5 checksum and API key for it the same way as for your release certificate. Default password for debug keystore is "android". | |||
|
feedback
|
|
Just review Hello, MapView : Make sure you have included into AndroidManifest.xml line for permissions:
Also, have you got Google Map API Key?
Other mention of error: GGroups - MapView showing as black screen after upgrade to 1.5 | |||
|
feedback
|
|
One more thing to check: I just had this problem (or rather, my problem was that the map was not showing up). I had skimmed through the map view tutorial and pasted the "uses-permission" tag inside the application tag by mistake. It needs to be directly under the manifest tag, like this:
A very simple mistake, but it took me a while to find. Hopefully this helps someone else! | |||
|
feedback
|