summaryrefslogtreecommitdiffstats
path: root/examples/demos/calqlatr/android/AndroidManifest.xml
blob: 73ca481d05e700f9561d36453b465bd5279dbe81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="org.qtproject.example.calqlatr"
          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.qtproject.qt.android.bindings.QtActivity"
                  android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|layoutDirection|locale|fontScale|keyboard|keyboardHidden|navigation|mcc|mnc|density"
                  android:label="-- %%INSERT_APP_NAME%% --"
                  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>
            <meta-data android:name="android.app.lib_name"
                       android:value="-- %%INSERT_APP_LIB_NAME%% --"/>
            <meta-data android:name="android.app.extract_android_style"
                       android:value="minimal"/>
        </activity>
    </application>
</manifest>