2022-11-10 15:50:04 +01:00
|
|
|
<?xml version="1.0"?>
|
2023-05-04 20:09:43 +02:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2025-03-02 20:28:04 +01:00
|
|
|
android:installLocation="auto"
|
2025-05-02 22:18:33 +02:00
|
|
|
android:versionCode="41" android:versionName="2025.05.0">
|
2022-11-10 15:50:04 +01:00
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
2022-11-29 23:44:32 +01:00
|
|
|
<uses-permission android:name="android.permission.CAMERA"/>
|
2024-12-17 18:42:15 +01:00
|
|
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
|
2025-03-02 19:35:00 +01:00
|
|
|
<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS"/>
|
2025-04-06 12:55:26 +02:00
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
|
2022-11-10 15:50:04 +01:00
|
|
|
|
|
|
|
|
<supports-screens
|
2022-12-08 14:23:01 +01:00
|
|
|
android:anyDensity="true"
|
|
|
|
|
android:largeScreens="true"
|
|
|
|
|
android:normalScreens="true"
|
|
|
|
|
android:smallScreens="true"/>
|
2022-11-10 15:50:04 +01:00
|
|
|
<application
|
2022-12-08 14:23:01 +01:00
|
|
|
android:name="org.qtproject.qt.android.bindings.QtApplication"
|
|
|
|
|
android:hardwareAccelerated="true"
|
|
|
|
|
android:label="Flowee Pay"
|
|
|
|
|
android:requestLegacyExternalStorage="true"
|
|
|
|
|
android:allowNativeHeapPointerTagging="false"
|
|
|
|
|
android:allowBackup="true"
|
|
|
|
|
android:fullBackupOnly="false"
|
2024-12-17 18:42:15 +01:00
|
|
|
android:icon="@drawable/logo">
|
2022-11-10 15:50:04 +01:00
|
|
|
<activity
|
2024-10-24 14:29:43 +02:00
|
|
|
android:name="org.flowee.pay.MainActivity"
|
|
|
|
|
android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|layoutDirection|locale|fontScale|keyboard|keyboardHidden|navigation|mcc|mnc|density"
|
|
|
|
|
android:label="Flowee Pay"
|
|
|
|
|
android:launchMode="singleTop"
|
|
|
|
|
android:screenOrientation="unspecified"
|
|
|
|
|
android:exported="true" >
|
2022-11-10 15:50:04 +01:00
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
|
</intent-filter>
|
2024-10-24 14:29:43 +02:00
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
<!-- BROWSABLE means that it can be invoked from a browser -->
|
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
|
|
|
|
|
<data android:scheme="bitcoincash" />
|
2024-10-25 11:33:11 +02:00
|
|
|
<data android:scheme="bch-wif" />
|
2024-10-24 14:29:43 +02:00
|
|
|
</intent-filter>
|
|
|
|
|
|
2022-11-10 15:50:04 +01:00
|
|
|
<meta-data android:name="android.app.lib_name" android:value="pay_mobile"/>
|
2024-10-31 12:09:19 +01:00
|
|
|
<meta-data android:name="android.app.shortcuts" android:resource="@xml/shortcuts" />
|
2022-11-10 15:50:04 +01:00
|
|
|
<meta-data android:name="android.app.extract_android_style" android:value="minimal"/>
|
|
|
|
|
</activity>
|
2025-03-02 19:35:00 +01:00
|
|
|
<service android:process=":qt_service"
|
|
|
|
|
android:name="org.flowee.pay.PeriodicService"
|
|
|
|
|
android:exported="false">
|
|
|
|
|
<meta-data android:name="android.app.lib_name" android:value="pay_mobile"/>
|
|
|
|
|
<meta-data android:name="android.app.arguments" android:value="--headless"/>
|
|
|
|
|
</service>
|
2025-04-06 12:55:26 +02:00
|
|
|
<receiver android:name="org.flowee.pay.OnBootHandler"
|
|
|
|
|
android:exported="true">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED"/>
|
2025-05-01 11:08:49 +02:00
|
|
|
<action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
|
2025-04-06 12:55:26 +02:00
|
|
|
</intent-filter>
|
|
|
|
|
</receiver>
|
2022-11-10 15:50:04 +01:00
|
|
|
</application>
|
|
|
|
|
</manifest>
|