ERROR/ActivityThread(194): Failed to find provider info for
com.google.settings.

can any one tell me what this error indicates or why it is
occurring ??

i have Written small code to display map but it is not working.....

map.java
public class map extends MapActivity
{

  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
  }

  @Override
  protected boolean isRouteDisplayed() {
    return false;
  }
}


main.xml
<com.google.android.maps.MapView
                        android:id="@+id/mapview1"
                 android:layout_width="fill_parent"
                 android:layout_height="fill_parent"
 
android:apiKey="0k8JSh6kFZgQ39fUlY4BfgUbEDsilM3HkklTOIQ"
                 />


manifest.xml


<uses-permission
android:name="android.permission.ACCESS_COARSE_LOCATION" />
  <uses-permission
android:name="android.permission.ACCESS_FINE_LOCATION" />
  <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" />

        <activity android:name=".map"
                  android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category
android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>


i can only see a graph like thing on emulator no "map" please tell
what is going wrong!!
it is urgent!!!!!!!!!!

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to