diff options
author | Mike Beattie <mike@ethernal.org> | 2019-09-19 10:17:52 +1200 |
---|---|---|
committer | Mike Beattie <mike@ethernal.org> | 2019-09-19 10:17:52 +1200 |
commit | b6cb79994a58f37f6c743c1f2fafe30337e89d79 (patch) | |
tree | bf0098909f756574b4ef5c7cec6b2b2aa9205b39 | |
parent | f2c652d5115eb64568d9ae8ed6426a16e6154999 (diff) |
Add FOREGROUND_SERVICE permission which is now required
Signed-off-by: Mike Beattie <mike@ethernal.org>
-rw-r--r-- | altosdroid/app/src/main/AndroidManifest.xml.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/altosdroid/app/src/main/AndroidManifest.xml.in b/altosdroid/app/src/main/AndroidManifest.xml.in index 566a7e58..89f97d6a 100644 --- a/altosdroid/app/src/main/AndroidManifest.xml.in +++ b/altosdroid/app/src/main/AndroidManifest.xml.in @@ -23,6 +23,8 @@ <!-- Google Maps --> <uses-feature android:glEsVersion="0x00020000" android:required="true"/> + <uses-permission android:name="android.permission.FOREGROUND_SERVICE" /> + <!-- Permissions needed to access bluetooth --> <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" /> <uses-permission android:name="android.permission.BLUETOOTH" /> |