Warning, /maui/booth/android_files/AndroidManifest.xml is written in an unsupported language. File is not indexed.

0001 <?xml version="1.0"?>
0002 <manifest package="org.maui.booth" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="${versionName}" android:versionCode="${versionCode}" android:installLocation="auto">
0003     <!-- The following comment will be replaced upon deployment with default permissions based on the dependencies of the application.
0004          Remove the comment if you do not require these default permissions. -->
0005     <!-- %%INSERT_PERMISSIONS -->
0006 
0007     <!-- The following comment will be replaced upon deployment with default features based on the dependencies of the application.
0008          Remove the comment if you do not require these default features. -->
0009     <!-- %%INSERT_FEATURES -->
0010 
0011     <supports-screens android:largeScreens="true" android:normalScreens="true" android:anyDensity="true" android:smallScreens="true"/>
0012 
0013     <application android:hardwareAccelerated="true" android:name="org.qtproject.qt5.android.bindings.QtApplication" android:label="Booth" android:extractNativeLibs="true" android:icon="@drawable/icon">
0014         <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="Booth" android:screenOrientation="unspecified" android:launchMode="singleTop">
0015             <intent-filter>
0016                 <action android:name="android.intent.action.MAIN"/>
0017                 <category android:name="android.intent.category.LAUNCHER"/>
0018             </intent-filter>
0019             <!-- Application arguments -->
0020             <!-- meta-data android:name="android.app.arguments" android:value="arg1 arg2 arg3"/ -->
0021             <!-- Application arguments -->
0022             <meta-data android:name="android.app.lib_name" android:value="booth"/>
0023             <meta-data android:name="android.app.qt_sources_resource_id" android:resource="@array/qt_sources"/>
0024             <meta-data android:name="android.app.repository" android:value="default"/>
0025             <meta-data android:name="android.app.qt_libs_resource_id" android:resource="@array/qt_libs"/>
0026             <meta-data android:name="android.app.bundled_libs_resource_id" android:resource="@array/bundled_libs"/>
0027             <!-- Deploy Qt libs as part of package -->
0028             <meta-data android:name="android.app.bundle_local_qt_libs" android:value="-- %%BUNDLE_LOCAL_QT_LIBS%% --"/>
0029             <!-- Run with local libs -->
0030             <meta-data android:name="android.app.use_local_qt_libs" android:value="-- %%USE_LOCAL_QT_LIBS%% --"/>
0031             <meta-data android:name="android.app.libs_prefix" android:value="/data/local/tmp/qt/"/>
0032             <meta-data android:name="android.app.load_local_libs_resource_id" android:resource="@array/load_local_libs"/>
0033             <meta-data android:name="android.app.load_local_jars" android:value="-- %%INSERT_LOCAL_JARS%% --"/>
0034             <meta-data android:name="android.app.static_init_classes" android:value="-- %%INSERT_INIT_CLASSES%% --"/>
0035             <!-- Used to specify custom system library path to run with local system libs -->
0036             <!-- <meta-data android:name="android.app.system_libs_prefix" android:value="/system/lib/"/> -->
0037             <!--  Messages maps -->
0038             <meta-data android:value="@string/ministro_not_found_msg" android:name="android.app.ministro_not_found_msg"/>
0039             <meta-data android:value="@string/ministro_needed_msg" android:name="android.app.ministro_needed_msg"/>
0040             <meta-data android:value="@string/fatal_error_msg" android:name="android.app.fatal_error_msg"/>
0041             <meta-data android:value="@string/unsupported_android_version" android:name="android.app.unsupported_android_version"/>
0042             <!--  Messages maps -->
0043             <!-- Splash screen -->
0044             <!-- Orientation-specific (portrait/landscape) data is checked first. If not available for current orientation,
0045                  then android.app.splash_screen_drawable. For best results, use together with splash_screen_sticky and
0046                  use hideSplashScreen() with a fade-out animation from Qt Android Extras to hide the splash screen when you
0047                  are done populating your window with content. -->
0048             <!-- meta-data android:name="android.app.splash_screen_drawable_portrait" android:resource="@drawable/logo_portrait" / -->
0049             <!-- meta-data android:name="android.app.splash_screen_drawable_landscape" android:resource="@drawable/logo_landscape" / -->
0050             <!-- meta-data android:name="android.app.splash_screen_drawable" android:resource="@drawable/logo"/ -->
0051             <!-- meta-data android:name="android.app.splash_screen_sticky" android:value="true"/ -->
0052             <!-- Splash screen -->
0053             <!-- Background running -->
0054             <!-- Warning: changing this value to true may cause unexpected crashes if the
0055                           application still try to draw after
0056                           "applicationStateChanged(Qt::ApplicationSuspended)"
0057                           signal is sent! -->
0058             <meta-data android:name="android.app.background_running" android:value="false"/>
0059             <!-- Background running -->
0060             <!-- auto screen scale factor -->
0061             <meta-data android:name="android.app.auto_screen_scale_factor" android:value="false"/>
0062             <!-- auto screen scale factor -->
0063             <!-- extract android style -->
0064             <!-- available android:values :
0065                 * 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
0066                 * full - useful QWidget & Quick Controls 1 apps
0067                 * minimal - useful for Quick Controls 2 apps, it is much faster than "full"
0068                 * none - useful for apps that don't use any of the above Qt modules
0069                 -->
0070             <meta-data android:name="android.app.extract_android_style" android:value="none"/>
0071             <!-- extract android style -->
0072         </activity>
0073         <!-- For adding service(s) please check: https://wiki.qt.io/AndroidServices -->
0074         <provider android:name="android.support.v4.content.FileProvider" android:authorities="org.maui.booth.fileprovider" android:grantUriPermissions="true" android:exported="false">
0075     <meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/filepaths"/>
0076     </provider>
0077     </application>
0078 
0079     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
0080     <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
0081     <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
0082     <uses-permission android:name="android.permission.INTERNET"/>
0083     <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
0084     <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/>
0085     <uses-permission android:name="android.permission.MOUNT_FORMAT_FILESYSTEMS"/>
0086     <uses-permission android:name="android.permission.ACCESS_CHECKIN_PROPERTIES"/>
0087     <uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES"/>
0088 </manifest>