hello everybody i am using below code to use gps but i am getting some message in emulator
W/LocationMasfClient( 53): uploadCollectionReport(): GLS failed with 5
W/LocationMasfClient( 53): uploadCollectionReport(): GLS failed with 5
W/LocationMasfClient( 53): uploadCollectionReport(): GLS failed with 5
W/LocationMasfClient( 53): uploadCollectionReport(): GLS failed with 5
D/LocationMasfClient( 53): getAddressFromProtoBuf(): Ignore feature 9,1600
D/LocationMasfClient( 53): getAddressFromProtoBuf(): Ignore feature 0,Santa Cl
ara
D/LocationMasfClient( 53): getAddressFromProtoBuf(): Ignore feature 0,San Jose
mycode-->
this.myLocationManager = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
LocationListener locationListener = new LocationListener() {
public void onLocationChanged(Location newloc) {
// something to do here when location changes
// TODO get other datq (accuracy, velocity, altitude, etc...)
// write data to database
// add markers
Log.i("TAG","<<<<<<<<<<<<<<on location changed called.......");
Restaurant.this.myLocation = newloc;
}
public void onProviderDisabled(String provider) {}
public void onProviderEnabled(String provider) {}
public void onStatusChanged(String provider, int status, Bundle extras) {}
};
this.myLocation = myLocationManager.getLastKnownLocation("gps");
myLocationManager.requestLocationUpdates("gps",
3, // 3 sec
0, // 0m
locationListener);
this.myLocation = myLocationManager.getLastKnownLocation("gps");
i have given all permission in mainifest......
does anybody know why?

