Files
pay/android/AndroidManifest.xml
T

81 lines
3.9 KiB
XML
Raw Permalink Normal View History

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"
2026-03-13 20:33:36 +01:00
android:versionCode="53" android:versionName="2026.03.1">
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"/>
<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"/>
2025-10-26 14:18:38 +01:00
<uses-permission android:name="android.permission.NFC"/>
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"
2025-08-29 14:40:30 +02:00
android:icon="@mipmap/ic_launcher">
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"
2025-11-13 23:45:10 +01:00
android:screenOrientation="portrait"
2024-10-24 14:29:43 +02:00
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>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="floweepay.QUICKSTART" />
<data android:scheme="flowee" />
</intent-filter>
<intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="application/bch-seed" />
</intent-filter>
2024-10-24 14:29:43 +02:00
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"/>
<action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
2025-04-06 12:55:26 +02:00
</intent-filter>
</receiver>
<receiver
android:name="org.flowee.pay.ActionsReceiver"
android:exported="false">
</receiver>
2022-11-10 15:50:04 +01:00
</application>
</manifest>