Warning, /utilities/kairo/src/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.qtproject.example" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="1.0" android:versionCode="1" android:installLocation="auto">
0003     <application android:hardwareAccelerated="true" android:name="org.qtproject.qt5.android.bindings.QtApplication" android:label="-- %%INSERT_APP_NAME%% --">
0004         <activity android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|layoutDirection|locale|fontScale|keyboard|keyboardHidden|navigation"
0005                   android:name="org.qtproject.qt5.android.bindings.QtActivity"
0006                   android:label="-- %%INSERT_APP_NAME%% --"
0007                   android:screenOrientation="unspecified"
0008                   android:launchMode="singleTop">
0009             <intent-filter>
0010                 <action android:name="android.intent.action.MAIN"/>
0011                 <category android:name="android.intent.category.LAUNCHER"/>
0012             </intent-filter>
0013 
0014             <!-- Application arguments -->
0015             <!-- meta-data android:name="android.app.arguments" android:value="arg1 arg2 arg3"/ -->
0016             <!-- Application arguments -->
0017 
0018             <meta-data android:name="android.app.lib_name" android:value="-- %%INSERT_APP_LIB_NAME%% --"/>
0019             <meta-data android:name="android.app.qt_sources_resource_id" android:resource="@array/qt_sources"/>
0020             <meta-data android:name="android.app.repository" android:value="default"/>
0021             <meta-data android:name="android.app.qt_libs_resource_id" android:resource="@array/qt_libs"/>
0022             <meta-data android:name="android.app.bundled_libs_resource_id" android:resource="@array/bundled_libs"/>
0023             <!-- Deploy Qt libs as part of package -->
0024             <meta-data android:name="android.app.bundle_local_qt_libs" android:value="-- %%BUNDLE_LOCAL_QT_LIBS%% --"/>
0025             <meta-data android:name="android.app.bundled_in_lib_resource_id" android:resource="@array/bundled_in_lib"/>
0026             <meta-data android:name="android.app.bundled_in_assets_resource_id" android:resource="@array/bundled_in_assets"/>
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/ministro_not_found_msg" android:name="android.app.ministro_not_found_msg"/>
0035             <meta-data android:value="@string/ministro_needed_msg" android:name="android.app.ministro_needed_msg"/>
0036             <meta-data android:value="@string/fatal_error_msg" android:name="android.app.fatal_error_msg"/>
0037             <!--  Messages maps -->
0038 
0039             <!-- Splash screen -->
0040             <!-- meta-data android:name="android.app.splash_screen_drawable" android:resource="@drawable/logo"/ -->
0041             <!-- meta-data android:name="android.app.splash_screen_sticky" android:value="true"/ -->
0042             <!-- Splash screen -->
0043 
0044             <!-- Background running -->
0045             <!-- Warning: changing this value to true may cause unexpected crashes if the
0046                           application still try to draw after
0047                           "applicationStateChanged(Qt::ApplicationSuspended)"
0048                           signal is sent! -->
0049             <meta-data android:name="android.app.background_running" android:value="true"/>
0050             <!-- Background running -->
0051 
0052             <!-- auto screen scale factor -->
0053             <meta-data android:name="android.app.auto_screen_scale_factor" android:value="false"/>
0054             <!-- auto screen scale factor -->
0055 
0056             <!-- extract android style -->
0057             <!-- available android:values :
0058                 * full - useful QWidget & Quick Controls 1 apps
0059                 * minimal - useful for Quick Controls 2 apps, it is much faster than "full"
0060                 * none - useful for apps that don't use any of the above Qt modules
0061                 -->
0062             <meta-data android:name="android.app.extract_android_style" android:value="full"/>
0063             <!-- extract android style -->
0064     </activity>
0065 
0066     <!-- For adding service(s) please check: https://wiki.qt.io/AndroidServices -->
0067 
0068     </application>
0069 
0070     <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="16"/>
0071     <supports-screens android:largeScreens="true" android:normalScreens="true" android:anyDensity="true" android:smallScreens="true"/>
0072 
0073     <!-- The following comment will be replaced upon deployment with default permissions based on the dependencies of the application.
0074          Remove the comment if you do not require these default permissions. -->
0075     <!-- %%INSERT_PERMISSIONS -->
0076 
0077     <!-- The following comment will be replaced upon deployment with default features based on the dependencies of the application.
0078          Remove the comment if you do not require these default features. -->
0079     <!-- %%INSERT_FEATURES -->
0080 
0081 </manifest>