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???

link|improve this question
Hi! What SDK version you're using? – Max Gontar Jan 1 '10 at 14:43
1  
I get this on the emulator, but it doesn't seem to affect anything. – Xiong Chiamiov Feb 24 '10 at 9:26
feedback

4 Answers

The MapView example doesn't set API key by default. So you must set it. Here is step by step:

  • Get MD5 from your system

    %JAVA_HOME%\bin\keytool.exe -list -alias androiddebugkey -keystore "C:\Documents and Settings\<user>\.android\debug.keystore" -storepass android -keypass android
    
  • Get API key by pasting the generated MD5 to this page

    http://code.google.com/android/maps-api-signup.html
    
  • Paste the generated API key to {your_project_root}/res/layout/map.xml

  • In AndroidManifest.xml, make sure

    <uses-library android:name="com.google.android.maps" /> inside <application>
    

    and

    <uses-permission android:name="android.permission.INTERNET" /> inside <manifest>
    
  • Refresh your project and run

Note:

  • The path of keytool.exe, debug.keystore and map.xml may differ on your system.
  • If you publish your app, be sure to register another API key.
  • If you don't set API key properly, your app will fail on phone and the error message probably is "... has stopped unexpectedly. Please try again. - Force close"

More detail at http://d.android.com/guide/tutorials/views/hello-mapview.html

link|improve this answer
feedback

If you've made sure you have INTERNET permission, and have correctly generated API key, and have put it in android:apiKey, and the same error still happens, here's one more thing to check: is your application signed with the same certificate that you used for Maps API key?

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".

Here's official docs about debug keystore

link|improve this answer
feedback

Just review Hello, MapView :

Make sure you have included into AndroidManifest.xml line for permissions:

<uses-permission android:name="android.permission.INTERNET" />

Also, have you got Google Map API Key?
Put it into MapView layout definition:

<com.google.android.maps.MapView
    android:id="@+id/mapview"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:clickable="true"
    android:apiKey="Your Maps API Key"
/>

Other mention of error: GGroups - MapView showing as black screen after upgrade to 1.5

link|improve this answer
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:

<?xml version="1.0" encoding="utf-8"?>
<manifest [...]>
  <uses-sdk [...] />
  <uses-permission android:name="android.permission.INTERNET" />

  <application android:icon="@drawable/icon" android:label="@string/app_name">
    <uses-library android:name="com.google.android.maps" />
    [...]
  </application>
</manifest>

A very simple mistake, but it took me a while to find. Hopefully this helps someone else!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.