Warning, /maui/vvave/android_files/AndroidManifest.xml is written in an unsupported language. File is not indexed.
0001 <?xml version="1.0"?>
0002 <manifest package="org.maui.vvave" 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 <!-- The following comment will be replaced upon deployment with default features based on the dependencies of the application.
0007 Remove the comment if you do not require these default features. -->
0008
0009
0010 <supports-screens android:largeScreens="true" android:normalScreens="true" android:anyDensity="true" android:smallScreens="true"/>
0011 <uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
0012
0013 <application android:hardwareAccelerated="true" android:name="org.qtproject.qt5.android.bindings.QtApplication" android:label="Vvave" 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="Vvave" 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 <intent-filter>
0020 <action android:name="android.intent.action.SEND_MULTIPLE"/>
0021 <category android:name="android.intent.category.DEFAULT"/>
0022 <data android:mimeType="*/*"/>
0023 </intent-filter>
0024 <!-- Application arguments -->
0025 <!-- Application arguments -->
0026 <meta-data android:name="android.app.lib_name" android:value="vvave"/>
0027 <meta-data android:name="android.app.qt_sources_resource_id" android:resource="@array/qt_sources"/>
0028 <meta-data android:name="android.app.repository" android:value="default"/>
0029 <meta-data android:name="android.app.qt_libs_resource_id" android:resource="@array/qt_libs"/>
0030 <meta-data android:name="android.app.bundled_libs_resource_id" android:resource="@array/bundled_libs"/>
0031 <!-- Deploy Qt libs as part of package -->
0032 <meta-data android:name="android.app.bundle_local_qt_libs" android:value="-- %%BUNDLE_LOCAL_QT_LIBS%% --"/>
0033 <!-- Run with local libs -->
0034 <meta-data android:name="android.app.use_local_qt_libs" android:value="-- %%USE_LOCAL_QT_LIBS%% --"/>
0035 <meta-data android:name="android.app.libs_prefix" android:value="/data/local/tmp/qt/"/>
0036 <meta-data android:name="android.app.load_local_libs_resource_id" android:resource="@array/load_local_libs"/>
0037 <meta-data android:name="android.app.load_local_jars" android:value="-- %%INSERT_LOCAL_JARS%% --"/>
0038 <meta-data android:name="android.app.static_init_classes" android:value="-- %%INSERT_INIT_CLASSES%% --"/>
0039 <!-- Used to specify custom system library path to run with local system libs -->
0040 <!-- <meta-data android:name="android.app.system_libs_prefix" android:value="/system/lib/"/> -->
0041 <!-- Messages maps -->
0042 <meta-data android:value="@string/ministro_not_found_msg" android:name="android.app.ministro_not_found_msg"/>
0043 <meta-data android:value="@string/ministro_needed_msg" android:name="android.app.ministro_needed_msg"/>
0044 <meta-data android:value="@string/fatal_error_msg" android:name="android.app.fatal_error_msg"/>
0045 <meta-data android:value="@string/unsupported_android_version" android:name="android.app.unsupported_android_version"/>
0046 <!-- Messages maps -->
0047 <!-- Splash screen -->
0048 <!-- Orientation-specific (portrait/landscape) data is checked first. If not available for current orientation,
0049 then android.app.splash_screen_drawable. For best results, use together with splash_screen_sticky and
0050 use hideSplashScreen() with a fade-out animation from Qt Android Extras to hide the splash screen when you
0051 are done populating your window with content. -->
0052 <!-- meta-data android:name="android.app.splash_screen_drawable_portrait" android:resource="@drawable/logo_portrait" / -->
0053 <!-- meta-data android:name="android.app.splash_screen_drawable_landscape" android:resource="@drawable/logo_landscape" / -->
0054 <!-- meta-data android:name="android.app.splash_screen_drawable" android:resource="@drawable/logo"/ -->
0055 <!-- meta-data android:name="android.app.splash_screen_sticky" android:value="true"/ -->
0056 <!-- Splash screen -->
0057 <!-- Background running -->
0058 <!-- Warning: changing this value to true may cause unexpected crashes if the
0059 application still try to draw after
0060 "applicationStateChanged(Qt::ApplicationSuspended)"
0061 signal is sent! -->
0062 <meta-data android:name="android.app.background_running" android:value="true"/>
0063 <!-- Background running -->
0064 <!-- auto screen scale factor -->
0065 <meta-data android:name="android.app.auto_screen_scale_factor" android:value="false"/>
0066 <!-- auto screen scale factor -->
0067 <!-- extract android style -->
0068 <!-- available android:values :
0069 * 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
0070 * full - useful QWidget & Quick Controls 1 apps
0071 * minimal - useful for Quick Controls 2 apps, it is much faster than "full"
0072 * none - useful for apps that don't use any of the above Qt modules
0073 -->
0074 <meta-data android:name="android.app.extract_android_style" android:value="none"/>
0075 <!-- extract android style -->
0076 </activity>
0077 <!-- For adding service(s) please check: https://wiki.qt.io/AndroidServices -->
0078 <provider android:name="androidx.core.content.FileProvider" android:authorities="org.maui.vvave.fileprovider" android:grantUriPermissions="true" android:exported="false">
0079 <meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/filepaths"/>
0080 </provider>
0081
0082 <service android:name=".QMediaSessionManager" android:process=":vvaveService">
0083 <!-- Deploy Qt libs as part of package -->
0084
0085 <meta-data android:name="android.app.bundle_local_qt_libs" android:value="-- %%BUNDLE_LOCAL_QT_LIBS%% --"/>
0086
0087 <!-- Deploy Qt libs as part of package -->
0088
0089
0090 <!-- Run with local libs -->
0091
0092 <meta-data android:name="android.app.use_local_qt_libs" android:value="-- %%USE_LOCAL_QT_LIBS%% --"/>
0093
0094 <meta-data android:name="android.app.libs_prefix" android:value="/data/local/tmp/qt/"/>
0095
0096 <meta-data android:name="android.app.load_local_libs_resource_id" android:resource="@array/load_local_libs"/>
0097
0098 <meta-data android:name="android.app.load_local_jars" android:value="-- %%INSERT_LOCAL_JARS%% --"/>
0099
0100 <meta-data android:name="android.app.static_init_classes" android:value="-- %%INSERT_INIT_CLASSES%% --"/>
0101
0102 <!-- Run with local libs -->
0103
0104
0105 <!-- Messages maps -->
0106
0107 <meta-data android:value="@string/fatal_error_msg" android:name="android.app.fatal_error_msg"/>
0108
0109 <meta-data android:value="@string/unsupported_android_version" android:name="android.app.unsupported_android_version"/>
0110
0111 <!-- Messages maps -->
0112
0113
0114 <!-- Background running -->
0115
0116 <meta-data android:name="android.app.background_running" android:value="true"/>
0117
0118 <!-- Background running -->
0119 <meta-data android:name="android.app.lib_name" android:value="vvave"/>
0120 <meta-data android:name="android.app.arguments" android:value="-service"/>
0121 </service>
0122 </application>
0123
0124
0125 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
0126 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
0127 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
0128 <uses-permission android:name="android.permission.INTERNET"/>
0129 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
0130 <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/>
0131 <uses-permission android:name="android.permission.MOUNT_FORMAT_FILESYSTEMS"/>
0132 <uses-permission android:name="android.permission.ACCESS_CHECKIN_PROPERTIES"/>
0133 <uses-permission android:name="android.permission.MEDIA_CONTENT_CONTROL"/>
0134 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/>
0135
0136 </manifest>