Change android target SDK version to 29

Play Store now accept only app with target
SDK version set to 29 or above

Change-Id: If38f20c88fd6b0e6f29939cdf3d2eb793c0e1489
Reviewed-by: Assam Boudjelthia <assam.boudjelthia@qt.io>
(cherry picked from commit 88ab9e1800f943b5c4bf06bb68baaff07185eb24)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
This commit is contained in:
Fabio Falsini 2020-11-16 18:08:29 +01:00 committed by Qt Cherry-pick Bot
parent 1dc65d7bac
commit b88dd5490b
3 changed files with 3 additions and 3 deletions

View File

@ -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 = 28
ANDROID_TARGET_SDK_VERSION = 29
NDK_LLVM_PATH = $$NDK_ROOT/toolchains/llvm/prebuilt/$$NDK_HOST
QMAKE_CC = $$NDK_LLVM_PATH/bin/clang

View File

@ -1125,7 +1125,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 28.
variable is set to API level 29.
\target ANDROID_VERSION_CODE
\section1 ANDROID_VERSION_CODE

View File

@ -177,7 +177,7 @@ struct Options
QString versionName;
QString versionCode;
QByteArray minSdkVersion{"23"};
QByteArray targetSdkVersion{"28"};
QByteArray targetSdkVersion{"29"};
// lib c++ path
QString stdCppPath;