summaryrefslogtreecommitdiff
path: root/android/app
diff options
context:
space:
mode:
authorOrangerot <purple@orangerot.dev>2025-01-06 19:21:36 +0100
committerOrangerot <purple@orangerot.dev>2025-01-06 19:21:36 +0100
commit36e859d2fe431a27b388ac9d8a13ade921a375a7 (patch)
tree8f9dcf90906c82ff60e5c8b6834fb44fa6a66bd0 /android/app
parentacebb2431c43108167a073e889a61147cc526edd (diff)
feat: connect to ESense via AlertDialog
Diffstat (limited to 'android/app')
-rw-r--r--android/app/src/main/AndroidManifest.xml13
1 files changed, 13 insertions, 0 deletions
diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml
index 56d0153..1499c1a 100644
--- a/android/app/src/main/AndroidManifest.xml
+++ b/android/app/src/main/AndroidManifest.xml
@@ -1,4 +1,17 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
+ <!-- The following permission is related to the eSense library -->
+ <uses-permission
+ android:name="android.permission.BLUETOOTH"
+ android:maxSdkVersion="30" />
+ <uses-permission
+ android:name="android.permission.BLUETOOTH_ADMIN"
+ android:maxSdkVersion="30" />
+ <uses-permission
+ android:name="android.permission.BLUETOOTH_SCAN"
+ android:usesPermissionFlags="neverForLocation" />
+ <uses-permission android:name="android.permission.BLUETOOTH_CONNECT"/>
+ <uses-feature android:name="android.hardware.bluetooth_le" android:required="true" />
+
<application
android:label="sense_the_rhythm"
android:name="${applicationName}"