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