2022-05-28 14:05:14 +02:00
|
|
|
<?xml version="1.0"?>
|
2024-12-17 14:39:42 +01:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="org.gpxsee.gpxsee"
|
|
|
|
android:installLocation="auto"
|
|
|
|
android:versionCode="-- %%INSERT_VERSION_CODE%% --"
|
|
|
|
android:versionName="-- %%INSERT_VERSION_NAME%% --">
|
2022-05-28 14:05:14 +02:00
|
|
|
<!-- %%INSERT_PERMISSIONS -->
|
|
|
|
<!-- %%INSERT_FEATURES -->
|
2024-12-17 14:39:42 +01:00
|
|
|
<supports-screens
|
|
|
|
android:anyDensity="true"
|
|
|
|
android:largeScreens="true"
|
|
|
|
android:normalScreens="true"
|
|
|
|
android:smallScreens="true"/>
|
|
|
|
<application
|
|
|
|
android:name="org.qtproject.qt.android.bindings.QtApplication"
|
|
|
|
android:hardwareAccelerated="true"
|
|
|
|
android:label="-- %%INSERT_APP_NAME%% --"
|
|
|
|
android:requestLegacyExternalStorage="true"
|
|
|
|
android:allowBackup="true"
|
|
|
|
android:fullBackupOnly="false"
|
|
|
|
android:icon="@drawable/icon">
|
|
|
|
<activity
|
|
|
|
android:name="org.gpxsee.gpxsee.Activity"
|
|
|
|
android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|layoutDirection|locale|fontScale|keyboard|keyboardHidden|navigation|mcc|mnc|density"
|
|
|
|
android:launchMode="singleTop"
|
|
|
|
android:screenOrientation="unspecified"
|
|
|
|
android:exported="true">
|
2022-05-28 14:05:14 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
2023-02-07 00:32:36 +01:00
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
<category android:name="android.intent.category.BROWSABLE"/>
|
2023-02-07 23:09:10 +01:00
|
|
|
<data android:scheme="content" android:mimeType="application/*"/>
|
|
|
|
<data android:scheme="content" android:mimeType="text/plain"/>
|
|
|
|
<data android:scheme="content" android:mimeType="text/xml"/>
|
|
|
|
<data android:scheme="content" android:mimeType="text/csv"/>
|
|
|
|
<data android:scheme="content" android:mimeType="image/jpeg"/>
|
|
|
|
<data android:scheme="content" android:mimeType="image/tiff"/>
|
2023-02-07 00:32:36 +01:00
|
|
|
</intent-filter>
|
2025-01-25 11:55:15 +01: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="geo"/>
|
|
|
|
</intent-filter>
|
2023-02-07 00:32:36 +01:00
|
|
|
|
2024-12-17 14:39:42 +01:00
|
|
|
<meta-data
|
|
|
|
android:name="android.app.lib_name"
|
|
|
|
android:value="-- %%INSERT_APP_LIB_NAME%% --"/>
|
|
|
|
<meta-data
|
|
|
|
android:name="android.app.arguments"
|
|
|
|
android:value="-- %%INSERT_APP_ARGUMENTS%% --"/>
|
2022-05-28 14:05:14 +02:00
|
|
|
</activity>
|
|
|
|
|
2024-12-17 14:39:42 +01:00
|
|
|
<provider
|
|
|
|
android:name="androidx.core.content.FileProvider"
|
|
|
|
android:authorities="${applicationId}.qtprovider"
|
|
|
|
android:exported="false"
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
android:resource="@xml/qtprovider_paths"/>
|
|
|
|
</provider>
|
|
|
|
</application>
|
2022-05-28 14:05:14 +02:00
|
|
|
</manifest>
|