diff options
Diffstat (limited to 'android/app/src/main/AndroidManifest.xml')
| -rw-r--r-- | android/app/src/main/AndroidManifest.xml | 17 | 
1 files changed, 16 insertions, 1 deletions
| diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 56d0153..9ba7706 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -1,6 +1,21 @@  <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.MANAGE_EXTERNAL_STORAGE" /> +<uses-permission android:name="android.permission.READ_INTERNAL_STORAGE" /> +<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> +    <uses-permission android:name="android.permission.BLUETOOTH" /> +    <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:label="Sense the Rhythm"          android:name="${applicationName}"          android:icon="@mipmap/ic_launcher">          <activity | 
