|
1 | 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
2 | 2 | package="co.paystack.flutterpaystackexample"> |
3 | 3 |
|
4 | | - <!-- The INTERNET permission is required for development. Specifically, |
5 | | - flutter needs it to communicate with the running application |
6 | | - to allow setting breakpoints, to provide hot reload, etc. |
7 | | - --> |
8 | 4 | <uses-permission android:name="android.permission.INTERNET" /> |
9 | | - |
10 | | - <!-- io.flutter.app.FlutterApplication is an android.app.Application that |
11 | | - calls FlutterMain.startInitialization(this); in its onCreate method. |
12 | | - In most cases you can leave this as-is, but you if you want to provide |
13 | | - additional functionality it is fine to subclass or reimplement |
14 | | - FlutterApplication and put your custom class here. --> |
15 | 5 | <application |
16 | | - android:name="io.flutter.app.FlutterApplication" |
| 6 | + android:name="${applicationName}" |
17 | 7 | android:icon="@mipmap/ic_launcher" |
18 | 8 | android:label="Flutter Paystack"> |
19 | 9 | <activity |
|
22 | 12 | android:hardwareAccelerated="true" |
23 | 13 | android:launchMode="singleTop" |
24 | 14 | android:theme="@style/LaunchTheme" |
| 15 | + android:exported="true" |
25 | 16 | android:windowSoftInputMode="adjustResize"> |
26 | | - <!-- This keeps the window background of the activity showing |
27 | | - until Flutter renders its first frame. It can be removed if |
28 | | - there is no splash screen (such as the default splash screen |
29 | | - defined in @style/LaunchTheme). --> |
30 | 17 | <meta-data |
31 | | - android:name="io.flutter.app.android.SplashScreenUntilFirstFrame" |
32 | | - android:value="true" /> |
| 18 | + android:name="io.flutter.embedding.android.NormalTheme" |
| 19 | + android:resource="@style/NormalTheme" /> |
| 20 | + |
33 | 21 | <intent-filter> |
34 | 22 | <action android:name="android.intent.action.MAIN" /> |
35 | 23 | <category android:name="android.intent.category.LAUNCHER" /> |
|
0 commit comments