Sunday 14 September 2014

Location updates in android

blogger
<manifest ... >
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
    ...</manifest>
 
 
If you are using both NETWORK_PROVIDER and GPS_PROVIDER, then you need to request 
only the ACCESS_FINE_LOCATION permission, because it includes permission for both 
providers. (Permission for ACCESS_COARSE_LOCATION includes permission only for  
NETWORK_PROVIDER.) 

No comments: