Warning, /utilities/klimbgrades/src/android/AndroidManifest.xml is written in an unsupported language. File is not indexed.
0001 <?xml version='1.0' encoding='utf-8'?>
0002 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
0003 package="org.kde.klimbgrades"
0004 android:versionName="${versionName}"
0005 android:versionCode="${versionCode}"
0006 android:installLocation="auto">
0007 <application android:hardwareAccelerated="true" android:name="org.qtproject.qt5.android.bindings.QtApplication" android:label="Klimbgrades" android:icon="@drawable/icon">
0008 <activity android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|layoutDirection|locale|fontScale|keyboard|keyboardHidden|navigation"
0009 android:name="org.qtproject.qt5.android.bindings.QtActivity"
0010 android:label="Klimbgrades"
0011 android:theme="@style/AppTheme"
0012 android:screenOrientation="unspecified"
0013 android:windowSoftInputMode="adjustResize"
0014 android:launchMode="singleTop"
0015 android:exported="true">
0016 <intent-filter>
0017 <action android:name="android.intent.action.MAIN"/>
0018 <category android:name="android.intent.category.LAUNCHER"/>
0019 </intent-filter>
0020 <meta-data android:name="android.app.lib_name" android:value="klimbgrades"/>
0021 <meta-data android:name="android.app.repository" android:value="default"/>
0022 <meta-data android:name="android.app.qt_libs_resource_id" android:resource="@array/qt_libs"/>
0023 <meta-data android:name="android.app.bundled_libs_resource_id" android:resource="@array/bundled_libs"/>
0024 <!-- Deploy Qt libs as part of package -->
0025 <meta-data android:name="android.app.bundle_local_qt_libs" android:value="-- %%BUNDLE_LOCAL_QT_LIBS%% --"/>
0026 <meta-data android:name="android.app.load_local_libs_resource_id" android:resource="@array/load_local_libs"/>
0027 <!-- Run with local libs -->
0028 <meta-data android:name="android.app.use_local_qt_libs" android:value="-- %%USE_LOCAL_QT_LIBS%% --"/>
0029 <meta-data android:name="android.app.libs_prefix" android:value="/data/local/tmp/qt/"/>
0030 <meta-data android:name="android.app.load_local_libs" android:value="-- %%INSERT_LOCAL_LIBS%% --"/>
0031 <meta-data android:name="android.app.load_local_jars" android:value="-- %%INSERT_LOCAL_JARS%% --"/>
0032 <meta-data android:name="android.app.static_init_classes" android:value="-- %%INSERT_INIT_CLASSES%% --"/>
0033 <!-- Messages maps -->
0034 <meta-data android:value="@string/fatal_error_msg" android:name="android.app.fatal_error_msg"/>
0035 <!-- Messages maps -->
0036
0037 <!-- Splash screen -->
0038 <meta-data android:name="android.app.splash_screen_drawable" android:resource="@drawable/splash"/>
0039 <!-- Splash screen -->
0040
0041 <!-- Background running -->
0042 <!-- Warning: changing this value to true may cause unexpected crashes if the
0043 application still try to draw after
0044 "applicationStateChanged(Qt::ApplicationSuspended)"
0045 signal is sent! -->
0046 <meta-data android:name="android.app.background_running" android:value="false"/>
0047 <!-- Background running -->
0048
0049 <!-- auto screen scale factor -->
0050 <meta-data android:name="android.app.auto_screen_scale_factor" android:value="false"/>
0051 <!-- auto screen scale factor -->
0052 </activity>
0053 </application>
0054 <supports-screens android:largeScreens="true" android:normalScreens="true" android:anyDensity="true" android:smallScreens="true"/>
0055
0056 <!-- The following comment will be replaced upon deployment with default permissions based on the dependencies of the application.
0057 Remove the comment if you do not require these default permissions. -->
0058 <!-- %%INSERT_PERMISSIONS -->
0059
0060 <!-- The following comment will be replaced upon deployment with default features based on the dependencies of the application.
0061 Remove the comment if you do not require these default features. -->
0062 <!-- %%INSERT_FEATURES -->
0063 </manifest>