blob: 307ad4bf190229b8d53c8fbbad1f1e1100af67e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
<manifest xmlnsandroid="http://schemas.android.com/apk/res/android"
package="com.example.doujinsea">
<application
androidlabel="doujinsea"
androidicon="@mipmap/ic_launcher">
<activity
androidname=".MainActivity"
androidlaunchMode="singleTop"
androidtheme="@style/LaunchTheme"
androidconfigChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
androidhardwareAccelerated="true"
androidwindowSoftInputMode="adjustResize">
<meta-data
androidname="io.flutter.embedding.android.NormalTheme"
androidresource="@style/NormalTheme"
/>
<meta-data
androidname="io.flutter.embedding.android.SplashScreenDrawable"
androidresource="@drawable/launch_background"
/>
<intent-filter>
<action androidname="android.intent.action.MAIN"/>
<category androidname="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<meta-data
androidname="flutterEmbedding"
androidvalue="2" />
</application>
</manifest>
|