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.
thank you for that lovely information
ReplyDelete