|
| 1 | +<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 2 | + package="com.darklod.jap_vocab"> |
| 3 | + <!-- io.flutter.app.FlutterApplication is an android.app.Application that |
| 4 | + calls FlutterMain.startInitialization(this); in its onCreate method. |
| 5 | + In most cases you can leave this as-is, but you if you want to provide |
| 6 | + additional functionality it is fine to subclass or reimplement |
| 7 | + FlutterApplication and put your custom class here. --> |
| 8 | + |
| 9 | + <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
| 10 | + <uses-permission android:name="android.permission.READ_INTERNAL_STORAGE" /> |
| 11 | + <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> |
| 12 | + <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/> |
| 13 | + |
| 14 | + <application |
| 15 | + android:name="io.flutter.app.FlutterApplication" |
| 16 | + android:label="語彙" |
| 17 | + android:icon="@mipmap/ic_launcher"> |
| 18 | + |
| 19 | + <receiver android:name="com.dexterous.flutterlocalnotifications.ScheduledNotificationReceiver" /> |
| 20 | + <receiver android:name="com.dexterous.flutterlocalnotifications.ScheduledNotificationBootReceiver"> |
| 21 | + <intent-filter> |
| 22 | + <action android:name="android.intent.action.BOOT_COMPLETED"/> |
| 23 | + <action android:name="android.intent.action.MY_PACKAGE_REPLACED"/> |
| 24 | + </intent-filter> |
| 25 | + </receiver> |
| 26 | + |
| 27 | + <activity |
| 28 | + android:name=".MainActivity" |
| 29 | + android:launchMode="singleTop" |
| 30 | + android:theme="@style/LaunchTheme" |
| 31 | + android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" |
| 32 | + android:hardwareAccelerated="true" |
| 33 | + android:windowSoftInputMode="adjustResize"> |
| 34 | + <!-- Specifies an Android theme to apply to this Activity as soon as |
| 35 | + the Android process has started. This theme is visible to the user |
| 36 | + while the Flutter UI initializes. After that, this theme continues |
| 37 | + to determine the Window background behind the Flutter UI. --> |
| 38 | + <meta-data |
| 39 | + android:name="io.flutter.embedding.android.NormalTheme" |
| 40 | + android:resource="@style/NormalTheme" |
| 41 | + /> |
| 42 | + <!-- Displays an Android View that continues showing the launch screen |
| 43 | + Drawable until Flutter paints its first frame, then this splash |
| 44 | + screen fades out. A splash screen is useful to avoid any visual |
| 45 | + gap between the end of Android's launch screen and the painting of |
| 46 | + Flutter's first frame. --> |
| 47 | + <meta-data |
| 48 | + android:name="io.flutter.embedding.android.SplashScreenDrawable" |
| 49 | + android:resource="@drawable/launch_background" |
| 50 | + /> |
| 51 | + <intent-filter> |
| 52 | + <action android:name="android.intent.action.MAIN"/> |
| 53 | + <category android:name="android.intent.category.LAUNCHER"/> |
| 54 | + </intent-filter> |
| 55 | + </activity> |
| 56 | + <!-- Don't delete the meta-data below. |
| 57 | + This is used by the Flutter tool to generate GeneratedPluginRegistrant.java --> |
| 58 | + <meta-data |
| 59 | + android:name="flutterEmbedding" |
| 60 | + android:value="2" /> |
| 61 | + </application> |
| 62 | +</manifest> |
0 commit comments