1<?xml version="1.0"?>
2<manifest package="org.qtproject.example" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="-- %%INSERT_VERSION_NAME%% --" android:versionCode="-- %%INSERT_VERSION_CODE%% --" android:installLocation="auto">
3    <!-- The following comment will be replaced upon deployment with default permissions based on the dependencies of the application.
4         Remove the comment if you do not require these default permissions. -->
5    <!-- %%INSERT_PERMISSIONS -->
6
7    <!-- The following comment will be replaced upon deployment with default features based on the dependencies of the application.
8         Remove the comment if you do not require these default features. -->
9    <!-- %%INSERT_FEATURES -->
10
11    <supports-screens android:largeScreens="true" android:normalScreens="true" android:anyDensity="true" android:smallScreens="true"/>
12    <application android:hardwareAccelerated="true" android:name="org.qtproject.qt5.android.bindings.QtApplication" android:label="-- %%INSERT_APP_NAME%% --" android:extractNativeLibs="true">
13        <activity android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|layoutDirection|locale|fontScale|keyboard|keyboardHidden|navigation|mcc|mnc|density" android:name="org.qtproject.qt5.android.bindings.QtActivity" android:label="-- %%INSERT_APP_NAME%% --" android:screenOrientation="unspecified" android:launchMode="singleTop">
14            <intent-filter>
15                <action android:name="android.intent.action.MAIN"/>
16                <category android:name="android.intent.category.LAUNCHER"/>
17            </intent-filter>
18
19            <!-- Application arguments -->
20            <!-- meta-data android:name="android.app.arguments" android:value="arg1 arg2 arg3"/ -->
21            <!-- Application arguments -->
22
23            <meta-data android:name="android.app.lib_name" android:value="-- %%INSERT_APP_LIB_NAME%% --"/>
24            <meta-data android:name="android.app.qt_sources_resource_id" android:resource="@array/qt_sources"/>
25            <meta-data android:name="android.app.repository" android:value="default"/>
26            <meta-data android:name="android.app.qt_libs_resource_id" android:resource="@array/qt_libs"/>
27            <meta-data android:name="android.app.bundled_libs_resource_id" android:resource="@array/bundled_libs"/>
28            <!-- Deploy Qt libs as part of package -->
29            <meta-data android:name="android.app.bundle_local_qt_libs" android:value="-- %%BUNDLE_LOCAL_QT_LIBS%% --"/>
30
31            <!-- Run with local libs -->
32            <meta-data android:name="android.app.use_local_qt_libs" android:value="-- %%USE_LOCAL_QT_LIBS%% --"/>
33            <meta-data android:name="android.app.libs_prefix" android:value="/data/local/tmp/qt/"/>
34            <meta-data android:name="android.app.load_local_libs_resource_id" android:resource="@array/load_local_libs"/>
35            <meta-data android:name="android.app.load_local_jars" android:value="-- %%INSERT_LOCAL_JARS%% --"/>
36            <meta-data android:name="android.app.static_init_classes" android:value="-- %%INSERT_INIT_CLASSES%% --"/>
37            <!-- Used to specify custom system library path to run with local system libs -->
38            <!-- <meta-data android:name="android.app.system_libs_prefix" android:value="/system/lib/"/> -->
39            <!--  Messages maps -->
40            <meta-data android:value="@string/ministro_not_found_msg" android:name="android.app.ministro_not_found_msg"/>
41            <meta-data android:value="@string/ministro_needed_msg" android:name="android.app.ministro_needed_msg"/>
42            <meta-data android:value="@string/fatal_error_msg" android:name="android.app.fatal_error_msg"/>
43            <meta-data android:value="@string/unsupported_android_version" android:name="android.app.unsupported_android_version"/>
44            <!--  Messages maps -->
45
46            <!-- Splash screen -->
47            <!-- Orientation-specific (portrait/landscape) data is checked first. If not available for current orientation,
48                 then android.app.splash_screen_drawable. For best results, use together with splash_screen_sticky and
49                 use hideSplashScreen() with a fade-out animation from Qt Android Extras to hide the splash screen when you
50                 are done populating your window with content. -->
51            <!-- meta-data android:name="android.app.splash_screen_drawable_portrait" android:resource="@drawable/logo_portrait" / -->
52            <!-- meta-data android:name="android.app.splash_screen_drawable_landscape" android:resource="@drawable/logo_landscape" / -->
53            <!-- meta-data android:name="android.app.splash_screen_drawable" android:resource="@drawable/logo"/ -->
54            <!-- meta-data android:name="android.app.splash_screen_sticky" android:value="true"/ -->
55            <!-- Splash screen -->
56
57            <!-- Background running -->
58            <!-- Warning: changing this value to true may cause unexpected crashes if the
59                          application still try to draw after
60                          "applicationStateChanged(Qt::ApplicationSuspended)"
61                          signal is sent! -->
62            <meta-data android:name="android.app.background_running" android:value="false"/>
63            <!-- Background running -->
64
65            <!-- auto screen scale factor -->
66            <meta-data android:name="android.app.auto_screen_scale_factor" android:value="false"/>
67            <!-- auto screen scale factor -->
68
69            <!-- extract android style -->
70            <!-- available android:values :
71                * default - In most cases this will be the same as "full", but it can also be something else if needed, e.g., for compatibility reasons
72                * full - useful QWidget & Quick Controls 1 apps
73                * minimal - useful for Quick Controls 2 apps, it is much faster than "full"
74                * none - useful for apps that don't use any of the above Qt modules
75                -->
76            <meta-data android:name="android.app.extract_android_style" android:value="default"/>
77            <!-- extract android style -->
78    </activity>
79
80    <!-- For adding service(s) please check: https://wiki.qt.io/AndroidServices -->
81
82    </application>
83
84</manifest>
85