From 21b5c7875cc39c575b14b190add676a5b96fb0b5 Mon Sep 17 00:00:00 2001 From: Alex Blasche Date: Thu, 4 Jun 2020 08:17:40 +0200 Subject: Raise the Android SDK build requirement to lvl 28 - compile fix First of all cmake and qmake used a different standard. Secondly, the qmake logic enforced lvl 23 (if it was installed which is the case on the failing machine). When this is combined with f71a400bf61 which requires lvl 28 API to build, the android build fails to compile. cmake logic was even worse as it enforced lvl 21 API to be used if installed. This change requires pick to 5.15 as f71a400bf61 was picked as well. Pick-to: 5.15 Change-Id: I89a7193b711b8bf927d02907343a49d6f27082ce Reviewed-by: Eskil Abrahamsen Blomfeldt --- mkspecs/features/android/sdk.prf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mkspecs/features/android/sdk.prf') diff --git a/mkspecs/features/android/sdk.prf b/mkspecs/features/android/sdk.prf index 3c10870bcc..463d399a21 100644 --- a/mkspecs/features/android/sdk.prf +++ b/mkspecs/features/android/sdk.prf @@ -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-23 +isEmpty(API_VERSION_TO_USE): API_VERSION_TO_USE = android-28 ANDROID_JAR_FILE = $$ANDROID_SDK_ROOT/platforms/$$API_VERSION_TO_USE/android.jar !exists($$ANDROID_JAR_FILE) { -- cgit v1.2.3