Skip to content
This repository was archived by the owner on Jul 7, 2025. It is now read-only.

Latest commit

 

History

History
21 lines (15 loc) · 673 Bytes

File metadata and controls

21 lines (15 loc) · 673 Bytes

Archived: this has moved to https://github.com/project-robius/robius

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.