Android: Update minimum version to 23 again
In 519ea72108, the minimum SDK
version was moved away from the AndroidManifest.xml, and when
the change was merged, we lost parts of the update to set
the minimum version to 23.
This redoes it in the remaining locations.
Change-Id: Iada8188d3c0c8ec0a4801c1d219640ecb3976753
Reviewed-by: BogDan Vatra <bogdan@kdab.com>
bb10
parent
a35a7fcb5a
commit
adc205631b
|
|
@ -18,7 +18,7 @@ if (NOT ${PROJECT_NAME}-MultiAbiBuild)
|
|||
option(ANDROID_BUILD_ABI_${abi} "Enable the build for Android ${abi}" ${abi_initial_value})
|
||||
endif()
|
||||
endforeach()
|
||||
option(ANDROID_MIN_SDK_VERSION "Android minimum SDK version" "21")
|
||||
option(ANDROID_MIN_SDK_VERSION "Android minimum SDK version" "23")
|
||||
option(ANDROID_TARGET_SDK_VERSION "Android target SDK version" "28")
|
||||
|
||||
# Make sure to delete the "android-build" directory, which contains all the
|
||||
|
|
|
|||
|
|
@ -170,7 +170,7 @@ struct Options
|
|||
// Versioning
|
||||
QString versionName;
|
||||
QString versionCode;
|
||||
QByteArray minSdkVersion{"21"};
|
||||
QByteArray minSdkVersion{"23"};
|
||||
QByteArray targetSdkVersion{"28"};
|
||||
|
||||
// lib c++ path
|
||||
|
|
|
|||
Loading…
Reference in New Issue