mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-01-18 19:52:09 +01:00
Martin Tůma
347212f012
As for now, this is just for Qt debuging as multiple stuff is broken in Qt 6.8.1 - The new style has serious render issues - Reading files in a directory is by multiple order of magnitude slower - The zoom gestures do not work reliably Qt versions prior to 6.8.1 are completely unusable due to the broken main menu.
64 lines
2.8 KiB
XML
64 lines
2.8 KiB
XML
<?xml version="1.0"?>
|
|
<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%% --">
|
|
<!-- %%INSERT_PERMISSIONS -->
|
|
<!-- %%INSERT_FEATURES -->
|
|
<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">
|
|
<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="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"/>
|
|
</intent-filter>
|
|
|
|
<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%% --"/>
|
|
</activity>
|
|
|
|
<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>
|
|
</manifest>
|