Bump Android API target level to 30

This commit is contained in:
Michael Zanetti 2021-08-11 20:04:43 +02:00
parent 5e56e4c39c
commit bc5804e22e
3 changed files with 10 additions and 1 deletions

View File

@ -71,6 +71,9 @@ linux:!android:!ubports: {
android {
include(../3rdParty/android/android_openssl/openssl.pri)
ANDROID_MIN_SDK_VERSION = 21
ANDROID_TARGET_SDK_VERSION = 30
QT += androidextras
HEADERS += platformintegration/android/platformhelperandroid.h
SOURCES += platformintegration/android/platformhelperandroid.cpp

View File

@ -154,7 +154,6 @@
</application>
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="29"/>
<supports-screens android:largeScreens="true" android:normalScreens="true" android:anyDensity="true" android:smallScreens="true"/>
<!-- The following comment will be replaced upon deployment with default permissions based on the dependencies of the application.

View File

@ -95,7 +95,14 @@ android {
abortOnError false
}
// Do not compress Qt binary resources file
aaptOptions {
noCompress 'rcc'
}
defaultConfig {
resConfigs "en", "de", "ko", "it", "nl", "es"
minSdkVersion = qtMinSdkVersion
targetSdkVersion = qtTargetSdkVersion
}
}