-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
28 lines (25 loc) · 1.12 KB
/
AndroidManifest.xml
File metadata and controls
28 lines (25 loc) · 1.12 KB
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
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="aeologic.flutter_paytm_ui">
<application
android:label="flutter_paytm_ui" android:icon="@mipmap/ic_launcher">
<meta-data android:name="flutterEmbedding" android:value="2"/>
<activity
android:name=".MainActivity"
android:launchMode="singleTop"
android:theme="@style/LaunchTheme">
<meta-data
android:name="io.flutter.embedding.android.SplashScreenDrawable"
android:resource="@drawable/launch_background" />
<meta-data
android:name="io.flutter.embedding.android.NormalTheme"
android:resource="@style/NormalTheme" />
<meta-data
android:name="io.flutter.app.android.SplashScreenUntilFirstFrame"
android:value="true" />
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>