Update Android default SDK from 29 to 30
By the time of Qt 6.2 release all new apps targeting Play store must target API level 30 (Android 11) or above (starting in 08/2021 for new apps and 11/2021 for existing apps' updates). Pick-to: 6.2 5.15 Task-number: QTBUG-94451 Change-Id: Id7fa2fd62899a7259e365c917292c6c3ac0d2b0d Reviewed-by: Assam Boudjelthia <assam.boudjelthia@qt.io>
This commit is contained in:
parent
1bdc35bfe0
commit
17d7a8dc2e
@ -33,7 +33,7 @@ function(qt_get_android_sdk_jar_for_api api out_jar_location)
|
||||
endfunction()
|
||||
|
||||
# Minimum recommend android SDK api version
|
||||
set(QT_ANDROID_API_VERSION "android-29")
|
||||
set(QT_ANDROID_API_VERSION "android-30")
|
||||
|
||||
# Locate android.jar
|
||||
set(QT_ANDROID_JAR "${ANDROID_SDK_ROOT}/platforms/${QT_ANDROID_API_VERSION}/android.jar")
|
||||
|
@ -44,7 +44,7 @@ isEmpty(ALL_ANDROID_ABIS): ALL_ANDROID_ABIS = arm64-v8a armeabi-v7a x86_64 x86
|
||||
CONFIG += $$ANDROID_PLATFORM
|
||||
|
||||
ANDROID_MIN_SDK_VERSION = $$replace(ANDROID_PLATFORM, "android-", "")
|
||||
ANDROID_TARGET_SDK_VERSION = 29
|
||||
ANDROID_TARGET_SDK_VERSION = 30
|
||||
|
||||
NDK_LLVM_PATH = $$NDK_ROOT/toolchains/llvm/prebuilt/$$NDK_HOST
|
||||
QMAKE_CC = $$NDK_LLVM_PATH/bin/clang
|
||||
|
@ -1,6 +1,6 @@
|
||||
API_VERSION_TO_USE = $$(ANDROID_API_VERSION)
|
||||
isEmpty(API_VERSION_TO_USE): API_VERSION_TO_USE = $$API_VERSION
|
||||
isEmpty(API_VERSION_TO_USE): API_VERSION_TO_USE = android-29
|
||||
isEmpty(API_VERSION_TO_USE): API_VERSION_TO_USE = android-30
|
||||
|
||||
ANDROID_JAR_FILE = $$ANDROID_SDK_ROOT/platforms/$$API_VERSION_TO_USE/android.jar
|
||||
!exists($$ANDROID_JAR_FILE) {
|
||||
|
@ -1129,7 +1129,7 @@
|
||||
\note This variable applies only to Android targets.
|
||||
|
||||
Specifies the target Android API level for the project. By default, this
|
||||
variable is set to API level 29.
|
||||
variable is set to API level 30.
|
||||
|
||||
\target ANDROID_VERSION_CODE
|
||||
\section1 ANDROID_VERSION_CODE
|
||||
|
@ -182,7 +182,7 @@ struct Options
|
||||
QString versionName;
|
||||
QString versionCode;
|
||||
QByteArray minSdkVersion{"23"};
|
||||
QByteArray targetSdkVersion{"29"};
|
||||
QByteArray targetSdkVersion{"30"};
|
||||
|
||||
// lib c++ path
|
||||
QString stdCppPath;
|
||||
|
Loading…
Reference in New Issue
Block a user