Share your knowledge

Monday, 9 January 2017

Dfferences between ACCESS_FINE_LOCATION and ACCESS_COARSE_LOCATION

  
Difference Between Fine and Coarse Locations

Fine Location: Provides better and accurate locations.

<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
  

It gives permissions to work with GPS Provider and Network Provider: 

Coarse Location: Provides less accurate locations

 
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>

It gives permissions to work with only Network Provider.

1 comment: