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"/>
|
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" />
|
2022-06-23 09:25:00 +00:00
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
2023-01-05 08:40:05 +00:00
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
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"
|
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"
|
2020-11-16 15:00:46 +00:00
|
|
|
android:allowBackup="false"
|
|
|
|
android:fullBackupContent="false"
|
2023-08-04 17:02:05 +00:00
|
|
|
android:versionCode="__versionCode__"
|
|
|
|
android:versionName="__versionName__"
|
2021-01-29 20:18:07 +00:00
|
|
|
android:requestLegacyExternalStorage="true">
|
2020-01-04 19:31:52 +00:00
|
|
|
<activity
|
|
|
|
android:name=".MainActivity"
|
2022-12-15 16:54:12 +00:00
|
|
|
android:launchMode="singleInstance"
|
2020-01-04 19:31:52 +00:00
|
|
|
android:theme="@style/LaunchTheme"
|
|
|
|
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
|
|
|
|
android:hardwareAccelerated="true"
|
|
|
|
android:windowSoftInputMode="adjustResize"
|
2022-11-17 02:55:26 +00:00
|
|
|
android:exported="true">
|
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>
|
2021-09-06 08:19:13 +00:00
|
|
|
<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>
|
2022-11-08 14:56:27 +00:00
|
|
|
<!-- currencies qr code scheme -->
|
2022-08-09 11:34:40 +00:00
|
|
|
<intent-filter android:autoVerify="true">
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
2023-09-14 19:14:16 +00:00
|
|
|
<data android:scheme="__APP_SCHEME__" />
|
2022-08-09 11:34:40 +00:00
|
|
|
<data android:scheme="bitcoin" />
|
2023-05-08 20:30:14 +00:00
|
|
|
<data android:scheme="bitcoin-wallet" />
|
|
|
|
<data android:scheme="bitcoin_wallet" />
|
2022-08-09 11:34:40 +00:00
|
|
|
<data android:scheme="monero" />
|
2023-05-08 20:30:14 +00:00
|
|
|
<data android:scheme="monero-wallet" />
|
|
|
|
<data android:scheme="monero_wallet" />
|
2022-08-09 11:34:40 +00:00
|
|
|
<data android:scheme="litecoin" />
|
2023-05-08 20:30:14 +00:00
|
|
|
<data android:scheme="litecoin-wallet" />
|
|
|
|
<data android:scheme="litecoin_wallet" />
|
2022-08-09 11:34:40 +00:00
|
|
|
</intent-filter>
|
2020-01-04 19:31:52 +00:00
|
|
|
</activity>
|
2020-11-11 15:55:18 +00:00
|
|
|
<meta-data
|
|
|
|
android:name="flutterEmbedding"
|
|
|
|
android:value="2" />
|
2023-01-05 08:40:05 +00:00
|
|
|
<provider
|
|
|
|
android:name="com.pichillilorenzo.flutter_inappwebview.InAppWebViewFileProvider"
|
|
|
|
android:authorities="${applicationId}.flutter_inappwebview.fileprovider"
|
|
|
|
android:exported="false"
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
android:resource="@xml/provider_paths" />
|
|
|
|
</provider>
|
2020-01-04 19:31:52 +00:00
|
|
|
</application>
|
2022-01-31 12:09:47 +00:00
|
|
|
|
|
|
|
<queries>
|
|
|
|
<intent>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<data android:scheme="https" />
|
|
|
|
</intent>
|
|
|
|
</queries>
|
2020-01-04 19:31:52 +00:00
|
|
|
</manifest>
|