AndroidManifest.xml (2994B)
1 <manifest xmlns:android="http://schemas.android.com/apk/res/android"> 2 <!-- The following permission is related to the eSense library --> 3 4 <uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" /> 5 <uses-permission android:name="android.permission.READ_INTERNAL_STORAGE" /> 6 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> 7 <uses-permission android:name="android.permission.BLUETOOTH" /> 8 <uses-permission 9 android:name="android.permission.BLUETOOTH_ADMIN" 10 android:maxSdkVersion="30" /> 11 <uses-permission 12 android:name="android.permission.BLUETOOTH_SCAN" 13 android:usesPermissionFlags="neverForLocation" /> 14 <uses-permission android:name="android.permission.BLUETOOTH_CONNECT"/> 15 <uses-feature android:name="android.hardware.bluetooth_le" android:required="true" /> 16 17 <application 18 android:label="Sense the Rhythm" 19 android:name="${applicationName}" 20 android:icon="@mipmap/ic_launcher"> 21 <activity 22 android:name=".MainActivity" 23 android:exported="true" 24 android:launchMode="singleTop" 25 android:taskAffinity="" 26 android:theme="@style/LaunchTheme" 27 android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" 28 android:hardwareAccelerated="true" 29 android:windowSoftInputMode="adjustResize"> 30 <!-- Specifies an Android theme to apply to this Activity as soon as 31 the Android process has started. This theme is visible to the user 32 while the Flutter UI initializes. After that, this theme continues 33 to determine the Window background behind the Flutter UI. --> 34 <meta-data 35 android:name="io.flutter.embedding.android.NormalTheme" 36 android:resource="@style/NormalTheme" 37 /> 38 <intent-filter> 39 <action android:name="android.intent.action.MAIN"/> 40 <category android:name="android.intent.category.LAUNCHER"/> 41 </intent-filter> 42 </activity> 43 <!-- Don't delete the meta-data below. 44 This is used by the Flutter tool to generate GeneratedPluginRegistrant.java --> 45 <meta-data 46 android:name="flutterEmbedding" 47 android:value="2" /> 48 </application> 49 <!-- Required to query activities that can process text, see: 50 https://developer.android.com/training/package-visibility and 51 https://developer.android.com/reference/android/content/Intent#ACTION_PROCESS_TEXT. 52 53 In particular, this is used by the Flutter engine in io.flutter.plugin.text.ProcessTextPlugin. --> 54 <queries> 55 <intent> 56 <action android:name="android.intent.action.PROCESS_TEXT"/> 57 <data android:mimeType="text/plain"/> 58 </intent> 59 </queries> 60 </manifest>