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

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