0

I am trying to make geolocation code on android. I am getting the following error in the logcat window even though I am getting a result in the emulator.

07-12 10:45:24.300: E/ActivityThread(237): Failed to find provider info for com.google.settings
07-12 10:45:24.310: E/ActivityThread(237): Failed to find provider info for com.google.settings
07-12 10:45:24.371: E/ActivityThread(237): Failed to find provider info for com.google.settings
Liam George Betsworth
  • 18,373
  • 5
  • 39
  • 42
sigway
  • 27
  • 5

2 Answers2

0

You probably haven't given the application permission to access these providers.

I don't know your implementation as you haven't given any code, but I assume you'll probably need internet, coarse location and fine location. I've added some extra ones just incase:

<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" />
<uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" />
<uses-permission android:name="android.permission.CONTROL_LOCATION_UPDATES" />
<uses-permission android:name="android.permission.INTERNET" />

Put these in your manifest file, just before the <application ..> tag.

If you're using Maps, make sure this is inside your <application ..> tag:

<uses-library android:name="com.google.android.maps" />
Liam George Betsworth
  • 18,373
  • 5
  • 39
  • 42
0

it kind of worked, but now i have the following errors :

07-13 01:37:07.171: E/QemuSensors(333): data_poll: len=-1, errno=9: Bad file number 07-13 01:37:07.171: E/QemuSensors(333): data_poll: len=-1, errno=9: Bad file number 07-13 01:37:07.211: E/QemuSensors(333): data_poll: len=-1, errno=9: Bad file number 07-13 01:37:07.211: E/QemuSensors(333): data_poll: len=-1, errno=9: Bad file number 07-13 01:37:07.211: E/QemuSensors(333): data_poll: len=-1, errno=9: Bad file number 07-13 01:37:07.211: E/QemuSensors(333): data_poll: len=-1, errno=9: Bad file number 07-13 01:37:07.511: E/QemuSensors(333): data_poll: len=-1, errno=9: Bad file number 07-13 01:37:07.646: E/QemuSensors(333): data_poll: len=-1, errno=9: Bad file number 07-13 01:37:07.646: E/QemuSensors(333): data_poll: len=-1, errno=9: Bad file number 07-13 01:37:07.661: E/QemuSensors(333): data_poll: len=-1, errno=9: Bad file number 07-13 01:37:07.661: E/QemuSensors(333): data_poll: len=-1, errno=9: Bad file number 07-13 01:37:07.670: E/QemuSensors(333): data_poll: len=-1, errno=9: Bad file number

here is the code

    package com.android.map;

    import android.location.Location;
    import android.location.LocationListener;
    import android.location.LocationManager;
    import android.os.Bundle;
    import android.view.KeyEvent;
    import android.widget.Toast;

    import com.google.android.maps.GeoPoint;
    import com.google.android.maps.MapActivity;
    import com.google.android.maps.MapController;
    import com.google.android.maps.MapView;
    import com.google.android.maps.MyLocationOverlay;

     public class HelloGoogleMapActivity extends MapActivity implements LocationListener
     {

 private MapView mapView = null;
 private LocationManager lm = null;
 private double lat = 0;
 private double lng = 0;
 private MapController mc = null;
 private MyLocationOverlay myLocation = null;

@Override
    public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);          
    mapView = (MapView) this.findViewById(R.id.mapView);
    mapView.setBuiltInZoomControls(true);

    lm = (LocationManager) this.getSystemService(LOCATION_SERVICE);
    lm.requestLocationUpdates(LocationManager.GPS_PROVIDER, 10000, 0, this);
    lm.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 10000, 0, this);

    mc = mapView.getController();
    mc.setZoom(12);
    myLocation = new MyLocationOverlay(getApplicationContext(),mapView); 
    myLocation.runOnFirstFix(new Runnable(){
     public void run(){
         mc.animateTo(myLocation.getMyLocation());
         mc.setZoom(17);
     }
    });

    mapView.getOverlays().add(myLocation);
    myLocation.enableMyLocation();
    myLocation.enableCompass();
}

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

@Override
public boolean onKeyDown(int keyCode, KeyEvent event)
{
    if (keyCode == KeyEvent.KEYCODE_S)
    {
        mapView.setSatellite(!mapView.isSatellite());
        return true;
    }
    return super.onKeyDown(keyCode, event);
}

@Override
public void onLocationChanged(Location location) {
    // TODO Auto-generated method stub
    lat = location.getLatitude();
     lng = location.getLongitude();
     Toast.makeText(getBaseContext(),
     "Location change to : Latitude = " + lat + " Longitude = " + lng,
     Toast.LENGTH_SHORT).show();
     GeoPoint p = new GeoPoint((int) (lat * 1E6), (int) (lng * 1E6));
     mc.animateTo(p);
     mc.setCenter(p);
}

@Override
public void onProviderDisabled(String arg0) {
    // TODO Auto-generated method stub

}

@Override
public void onProviderEnabled(String arg0) {
    // TODO Auto-generated method stub

}

@Override
public void onStatusChanged(String arg0, int arg1, Bundle arg2) {
    // TODO Auto-generated method stub

}

}

thank u for your help

sigway
  • 27
  • 5