1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-01-02 00:10:22 +02:00

Remove excessive auto-generated permissions by Qt

This commit is contained in:
Ivan Savenko 2024-06-20 18:41:06 +00:00
parent ed685184e4
commit bdd9ae5268
2 changed files with 3 additions and 10 deletions

View File

@ -2,16 +2,9 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="eu.vcmi.vcmi"> package="eu.vcmi.vcmi">
<!-- %%INSERT_PERMISSIONS --> <uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.VIBRATE" /> <uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<!-- The following comment will be replaced upon deployment with default permissions based on the dependencies of the application.
Remove the comment if you do not require these default permissions. -->
<!-- %%INSERT_PERMISSIONS_DISABLED -->
<!-- The following comment will be replaced upon deployment with default features based on the dependencies of the application.
Remove the comment if you do not require these default features. -->
<!-- %%INSERT_FEATURES -->
<supports-screens <supports-screens
android:largeScreens="true" android:largeScreens="true"

View File

@ -26,7 +26,7 @@ android {
minSdk = qtMinSdkVersion as Integer minSdk = qtMinSdkVersion as Integer
targetSdk = qtTargetSdkVersion as Integer // ANDROID_TARGET_SDK_VERSION in the CMake project targetSdk = qtTargetSdkVersion as Integer // ANDROID_TARGET_SDK_VERSION in the CMake project
versionCode 1530 versionCode 1531
versionName "1.5.3" versionName "1.5.3"
setProperty("archivesBaseName", "vcmi") setProperty("archivesBaseName", "vcmi")