2020-01-04 19:31:52 +00:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="com.cakewallet.cake_wallet">
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
2020-01-21 17:51:37 +00:00
|
|
|
<uses-permission android:name="android.permission.USE_FINGERPRINT"/>
|
2020-01-04 19:31:52 +00:00
|
|
|
|
|
|
|
<application
|
|
|
|
android:label="Cake Wallet"
|
|
|
|
android:icon="@mipmap/ic_launcher">
|
|
|
|
<activity
|
|
|
|
android:name=".MainActivity"
|
|
|
|
android:launchMode="singleTop"
|
|
|
|
android:theme="@style/LaunchTheme"
|
|
|
|
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
|
|
|
|
android:hardwareAccelerated="true"
|
|
|
|
android:windowSoftInputMode="adjustResize"
|
|
|
|
android:screenOrientation="portrait">
|
2020-11-11 15:55:18 +00:00
|
|
|
<!-- <meta-data-->
|
|
|
|
<!-- android:name="io.flutter.embedding.android.NormalTheme"-->
|
|
|
|
<!-- android:resource="@style/NormalTheme"-->
|
|
|
|
<!-- />-->
|
|
|
|
<!-- Displays an Android View that continues showing the launch screen
|
|
|
|
Drawable until Flutter paints its first frame, then this splash
|
|
|
|
screen fades out. A splash screen is useful to avoid any visual
|
|
|
|
gap between the end of Android's launch screen and the painting of
|
|
|
|
Flutter's first frame. -->
|
2020-01-04 19:31:52 +00:00
|
|
|
<meta-data
|
2020-11-11 15:55:18 +00:00
|
|
|
android:name="io.flutter.embedding.android.SplashScreenDrawable"
|
|
|
|
android:resource="@drawable/launch_background"
|
|
|
|
/>
|
2020-01-04 19:31:52 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2020-11-11 15:55:18 +00:00
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="flutterEmbedding"
|
|
|
|
android:value="2" />
|
2020-01-04 19:31:52 +00:00
|
|
|
</application>
|
|
|
|
</manifest>
|