cake_wallet/android/app/src/main/AndroidManifestBase.xml

46 lines
2 KiB
XML
Raw Normal View History

2020-01-04 19:31:52 +00:00
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2022-01-05 15:51:26 +00:00
package="__APP_PACKAGE__">
2020-01-04 19:31:52 +00:00
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.USE_FINGERPRINT"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_INTERNAL_STORAGE" />
2020-01-04 19:31:52 +00:00
<application
2021-06-04 15:25:17 +00:00
android:name=".Application"
2022-01-04 16:55:11 +00:00
android:label="${APP_NAME}"
2022-01-14 18:35:29 +00:00
android:icon="@mipmap/ic_launcher"
android:allowBackup="false"
android:fullBackupContent="false"
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
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>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:scheme="cakewallet"
android:host="y.at" />
</intent-filter>
2020-01-04 19:31:52 +00:00
</activity>
<meta-data
android:name="flutterEmbedding"
android:value="2" />
2020-01-04 19:31:52 +00:00
</application>
</manifest>