Our GPS based application works fine for 99% of the users. However, a 
handful have reported back that on their Galaxy Spica/Portal the GPS never 
gets a fix while being used by our program. More frustratingly, the users 
report that the stock Google Maps application gets the GPS to work just 
fine.
 
We are using the standard way of initialising the GPS, like so
 
 
> this.lm = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
> if (this.lm.isProviderEnabled(LocationManager.GPS_PROVIDER)) {
>  this.lm.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 1, this);
> }
>
 
Does anyone know what else the Spica needs to get the GPS going?

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