make HW GPS optional on phone

pull/104/head
geeksville 2020-07-15 17:09:45 -07:00
rodzic 4d9fb32fa1
commit a527852f55
1 zmienionych plików z 8 dodań i 0 usunięć

Wyświetl plik

@ -13,6 +13,14 @@
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> <!-- only useful if this phone can do BTLE -->
<uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" /> <!-- needed to access bluetooth when app is background -->
<!-- If a device is missing a GPS - we will still be able to work though -->
<uses-feature
android:name="android.hardware.location"
android:required="false" />
<uses-feature
android:name="android.hardware.location.gps"
android:required="false" />
<uses-permission android:name="android.permission.WAKE_LOCK" /> <!-- for job intent service -->
<!--