|
| 1 | +<manifest xmlns:android="http://schemas.android.com/apk/res/android"> |
| 2 | + |
| 3 | + <!-- Permissions for image_picker and share_plus --> |
| 4 | + <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" |
| 5 | + android:maxSdkVersion="32" /> |
| 6 | + <uses-permission android:name="android.permission.READ_MEDIA_IMAGES" /> |
| 7 | + <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" |
| 8 | + android:maxSdkVersion="29" /> |
| 9 | + |
| 10 | + <application |
| 11 | + android:label="notes" |
| 12 | + android:name="${applicationName}" |
| 13 | + android:icon="@mipmap/ic_launcher" |
| 14 | + android:requestLegacyExternalStorage="true"> |
| 15 | + <activity |
| 16 | + android:name=".MainActivity" |
| 17 | + android:exported="true" |
| 18 | + android:launchMode="singleTop" |
| 19 | + android:taskAffinity="" |
| 20 | + android:theme="@style/LaunchTheme" |
| 21 | + android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" |
| 22 | + android:hardwareAccelerated="true" |
| 23 | + android:windowSoftInputMode="adjustResize"> |
| 24 | + <meta-data |
| 25 | + android:name="io.flutter.embedding.android.NormalTheme" |
| 26 | + android:resource="@style/NormalTheme" |
| 27 | + /> |
| 28 | + <intent-filter> |
| 29 | + <action android:name="android.intent.action.MAIN"/> |
| 30 | + <category android:name="android.intent.category.LAUNCHER"/> |
| 31 | + </intent-filter> |
| 32 | + </activity> |
| 33 | + <!-- FileProvider for share_plus / image_picker --> |
| 34 | + <provider |
| 35 | + android:name="androidx.core.content.FileProvider" |
| 36 | + android:authorities="${applicationId}.fileprovider" |
| 37 | + android:exported="false" |
| 38 | + android:grantUriPermissions="true"> |
| 39 | + <meta-data |
| 40 | + android:name="android.support.FILE_PROVIDER_PATHS" |
| 41 | + android:resource="@xml/file_provider_paths" /> |
| 42 | + </provider> |
| 43 | + <meta-data |
| 44 | + android:name="flutterEmbedding" |
| 45 | + android:value="2" /> |
| 46 | + </application> |
| 47 | + <queries> |
| 48 | + <intent> |
| 49 | + <action android:name="android.intent.action.PROCESS_TEXT"/> |
| 50 | + <data android:mimeType="text/plain"/> |
| 51 | + </intent> |
| 52 | + <intent> |
| 53 | + <action android:name="android.intent.action.VIEW" /> |
| 54 | + <data android:scheme="https" /> |
| 55 | + </intent> |
| 56 | + <intent> |
| 57 | + <action android:name="android.media.action.IMAGE_CAPTURE" /> |
| 58 | + </intent> |
| 59 | + </queries> |
| 60 | +</manifest> |
0 commit comments