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"/>
|
2021-01-28 17:58:17 +00:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
2021-01-29 20:18:07 +00:00
|
|
|
<uses-permission android:name="android.permission.WRITE_INTERNAL_STORAGE" />
|
2021-01-28 17:58:17 +00:00
|
|
|
|
2020-01-04 19:31:52 +00:00
|
|
|
<application
|
2021-06-04 15:25:17 +00:00
|
|
|
android:name=".Application"
|
2020-01-04 19:31:52 +00:00
|
|
|
android:label="Cake Wallet"
|
2020-11-16 15:00:46 +00:00
|
|
|
android:allowBackup="false"
|
|
|
|
android:fullBackupContent="false"
|
2021-01-29 20:18:07 +00:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:requestLegacyExternalStorage="true">
|
2020-01-04 19:31:52 +00:00
|
|
|
<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">
|
|
|
|
<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>
|