Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 601 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 601 Bytes

robius-location

A library to access system location data.

Android

On Android the following must be added to the manifest:

<manifest ... >
  <!-- Always include this permission -->
  <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />

  <!-- Include only if your app benefits from precise location access. -->
  <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
</manifest>

As specified in the Android documentation.