Warning, /education/minuet/android/AndroidManifest.xml is written in an unsupported language. File is not indexed.

0001 <?xml version='1.0' encoding='utf-8'?>
0002 <manifest package="org.kde.minuet"
0003           xmlns:android="http://schemas.android.com/apk/res/android"
0004           android:versionName="0.3.0"
0005           android:versionCode="5"
0006           android:installLocation="auto">
0007     <uses-sdk android:minSdkVersion="21" android:targetSdkVersion="28"/>
0008 
0009     <!-- The following comment will be replaced upon deployment with default permissions based on the dependencies of the application.
0010          Remove the comment if you do not require these default permissions. -->
0011       <!-- %%INSERT_PERMISSIONS -->
0012 
0013     <!-- The following comment will be replaced upon deployment with default features based on the dependencies of the application.
0014          Remove the comment if you do not require these default features. -->
0015     <!-- %%INSERT_FEATURES -->
0016 
0017     <supports-screens android:largeScreens="true"
0018                       android:normalScreens="true"
0019                       android:anyDensity="true"
0020                       android:smallScreens="true"/>
0021 
0022     <application android:hardwareAccelerated="true"
0023                  android:name="org.qtproject.qt5.android.bindings.QtApplication"
0024                  android:label="Minuet"
0025                  android:icon="@drawable/minuet"
0026                  android:theme="@style/MinuetTheme">
0027         <activity android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|layoutDirection|locale|fontScale|keyboard|keyboardHidden|navigation|mcc|mnc|density"
0028                   android:name="org.qtproject.qt5.android.bindings.QtActivity"
0029                   android:label="Minuet"
0030                   android:screenOrientation="unspecified"
0031                   android:launchMode="singleTop">
0032             <intent-filter>
0033                 <action android:name="android.intent.action.MAIN"/>
0034                 <category android:name="android.intent.category.LAUNCHER"/>
0035             </intent-filter>
0036 
0037             <meta-data android:name="android.app.lib_name" android:value="minuet"/>
0038             <meta-data android:name="android.app.qt_sources_resource_id" android:resource="@array/qt_sources"/>
0039             <meta-data android:name="android.app.repository" android:value="default"/>
0040             <meta-data android:name="android.app.qt_libs_resource_id" android:resource="@array/qt_libs"/>
0041             <meta-data android:name="android.app.bundled_libs_resource_id" android:resource="@array/bundled_libs"/>
0042 
0043             <!-- Deploy Qt libs as part of package -->
0044             <meta-data android:name="android.app.bundle_local_qt_libs" android:value="1"/>
0045             <meta-data android:name="android.app.bundled_in_lib_resource_id" android:resource="@array/bundled_in_lib"/>
0046             <meta-data android:name="android.app.bundled_in_assets_resource_id" android:resource="@array/bundled_in_assets"/>
0047 
0048             <!-- Run with local libs -->
0049             <meta-data android:name="android.app.use_local_qt_libs" android:value="1"/>
0050             <meta-data android:name="android.app.libs_prefix" android:value="/data/local/tmp/qt/"/>
0051             <meta-data android:name="android.app.load_local_libs" android:value="-- %%INSERT_LOCAL_LIBS%% --"/>
0052             <meta-data android:name="android.app.load_local_jars" android:value="-- %%INSERT_LOCAL_JARS%% --"/>
0053             <meta-data android:name="android.app.static_init_classes" android:value="-- %%INSERT_INIT_CLASSES%% --"/>
0054 
0055             <!-- Used to specify custom system library path to run with local system libs -->
0056             <!-- <meta-data android:name="android.app.system_libs_prefix" android:value="/system/lib/"/> -->
0057 
0058             <!--  Messages maps -->
0059             <meta-data android:value="@string/ministro_not_found_msg" android:name="android.app.ministro_not_found_msg"/>
0060             <meta-data android:value="@string/ministro_needed_msg" android:name="android.app.ministro_needed_msg"/>
0061             <meta-data android:value="@string/fatal_error_msg" android:name="android.app.fatal_error_msg"/>
0062             <meta-data android:value="@string/unsupported_android_version" android:name="android.app.unsupported_android_version"/>
0063             <!--  Messages maps -->
0064 
0065             <!-- Splash screen -->
0066             <!-- Orientation-specific (portrait/landscape) data is checked first. If not available for current orientation,
0067                  then android.app.splash_screen_drawable. For best results, use together with splash_screen_sticky and
0068                  use hideSplashScreen() with a fade-out animation from Qt Android Extras to hide the splash screen when you
0069                  are done populating your window with content. -->
0070             <!-- meta-data android:name="android.app.splash_screen_drawable_portrait" android:resource="@drawable/splash" / -->
0071             <!-- meta-data android:name="android.app.splash_screen_drawable_landscape" android:resource="@drawable/splash" / -->
0072             <meta-data android:name="android.app.splash_screen_drawable" android:resource="@drawable/splash"/>
0073             <!-- meta-data android:name="android.app.splash_screen_sticky" android:value="true"/ -->
0074             <!-- Splash screen -->
0075 
0076             <!-- Background running -->
0077             <!-- Warning: changing this value to true may cause unexpected crashes if the
0078                           application still try to draw after
0079                           "applicationStateChanged(Qt::ApplicationSuspended)"
0080                           signal is sent! -->
0081             <meta-data android:name="android.app.background_running" android:value="false"/>
0082             <!-- Background running -->
0083 
0084             <!-- auto screen scale factor -->
0085             <meta-data android:name="android.app.auto_screen_scale_factor" android:value="false"/>
0086             <!-- auto screen scale factor -->
0087 
0088             <!-- extract android style -->
0089             <!-- available android:values :
0090                 * 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
0091                 * full - useful QWidget & Quick Controls 1 apps
0092                 * minimal - useful for Quick Controls 2 apps, it is much faster than "full"
0093                 * none - useful for apps that don't use any of the above Qt modules
0094                 -->
0095             <meta-data android:name="android.app.extract_android_style" android:value="default"/>
0096             <!-- extract android style -->
0097         </activity>
0098         <!-- For adding service(s) please check: https://wiki.qt.io/AndroidServices -->
0099     </application>
0100 </manifest>