summaryrefslogtreecommitdiffstats
path: root/src/android
diff options
context:
space:
mode:
authorAssam Boudjelthia <assam.boudjelthia@qt.io>2021-09-24 18:50:15 +0300
committerAssam Boudjelthia <assam.boudjelthia@qt.io>2021-10-02 12:11:23 +0000
commita1e7c441de16cb4e8d6bdac39160759116ecd233 (patch)
tree259eb17b0ab026b436911a6d05085c2707ea67a3 /src/android
parenteb0a783e63cb848c8c004cc6b725a7f09af2c849 (diff)
Android: remove comments from the manifest file
The comments are not needed, since we're adding a docs page for the manifest, which include the information from these comments and more. Keep the manifest clean. Pick-to: 6.2 Task-number: QTBUG-95285 Change-Id: I1fd8bc695f5aab1bcc69f549cb3ddeeaac168b98 Reviewed-by: Ville Voutilainen <ville.voutilainen@qt.io>
Diffstat (limited to 'src/android')
-rw-r--r--src/android/templates/AndroidManifest.xml50
1 files changed, 6 insertions, 44 deletions
diff --git a/src/android/templates/AndroidManifest.xml b/src/android/templates/AndroidManifest.xml
index 86dd3c54d2..dc54a3400b 100644
--- a/src/android/templates/AndroidManifest.xml
+++ b/src/android/templates/AndroidManifest.xml
@@ -4,14 +4,8 @@
android:installLocation="auto"
android:versionCode="-- %%INSERT_VERSION_CODE%% --"
android:versionName="-- %%INSERT_VERSION_NAME%% --">
- <!-- The comment below will be replaced with dependencies permissions upon deployment.
- Remove the comment if you do not require these default permissions. -->
<!-- %%INSERT_PERMISSIONS -->
-
- <!-- The comment below will be replaced with dependencies permissions upon deployment.
- Remove the comment if you do not require these default features. -->
<!-- %%INSERT_FEATURES -->
-
<supports-screens
android:anyDensity="true"
android:largeScreens="true"
@@ -30,53 +24,21 @@
android:launchMode="singleTop"
android:screenOrientation="unspecified">
<intent-filter>
- <action android:name="android.intent.action.MAIN"/>
- <category android:name="android.intent.category.LAUNCHER"/>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
- <!-- Application arguments -->
- <meta-data
- android:name="android.app.arguments"
- android:value="-- %%INSERT_APP_ARGUMENTS%% --" />
- <!-- Application arguments -->
- <meta-data
+ <meta-data
android:name="android.app.lib_name"
android:value="-- %%INSERT_APP_LIB_NAME%% --" />
- <!-- Used to specify custom system library path to run with local system libs -->
-<!-- <meta-data android:name="android.app.system_libs_prefix" android:value="/system/lib/"/>-->
- <!-- Splash screen -->
- <!-- Orientation-specific (portrait/landscape) data is checked first. If not available
- for current orientation, then android.app.splash_screen_drawable. For best
- results, use together with splash_screen_sticky and use hideSplashScreen() with
- a fade-out animation to hide the splash screen when you are done populating
- your window with content. -->
-<!-- <meta-data android:name="android.app.splash_screen_drawable_portrait" android:resource="@drawable/logo_portrait" />-->
-<!-- <meta-data android:name="android.app.splash_screen_drawable_landscape" android:resource="@drawable/logo_landscape" />-->
-<!-- <meta-data android:name="android.app.splash_screen_drawable" android:resource="@drawable/logo"/>-->
-<!-- <meta-data android:name="android.app.splash_screen_sticky" android:value="true"/>-->
- <!-- Splash screen -->
-
- <!-- Background running -->
- <!-- Warning: changing this value to true may cause unexpected crashes if the
- application still try to draw after
- "applicationStateChanged(Qt::ApplicationSuspended)" signal is sent! -->
- <meta-data
- android:name="android.app.background_running"
- android:value="false" />
- <!-- Background running -->
+ <meta-data
+ android:name="android.app.arguments"
+ android:value="-- %%INSERT_APP_ARGUMENTS%% --" />
- <!-- extract android style -->
- <!-- available android:values :
- * 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
- * full - useful QWidget & Quick Controls 1 apps
- * minimal - useful for Quick Controls 2 apps, it is much faster than "full"
- * none - useful for apps that don't use any of the above Qt modules -->
<meta-data
android:name="android.app.extract_android_style"
android:value="minimal" />
- <!-- extract android style -->
</activity>
</application>
</manifest>