aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Blasche <alexander.blasche@qt.io>2019-04-25 10:45:59 +0200
committerAlex Blasche <alexander.blasche@qt.io>2019-04-26 06:20:14 +0000
commit653900f1d4801f184ddd9725f0806406a4021b8b (patch)
tree90a0863605e6b53ad3116dd31932131d9109f927
parenteba95c27bee1f0798e9796e36689e7438902a179 (diff)
Fix building examples on Android
Qt 5.13 lifted the minimal Android SDK version to 21. The example had a too low version. Change-Id: I3b9bc936799e334635898435366167f91c002c75 Reviewed-by: BogDan Vatra <bogdan@kdab.com>
-rw-r--r--examples/gamepad/configureButtons/android/AndroidManifest.xml2
-rw-r--r--examples/gamepad/simple/android/AndroidManifest.xml2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/gamepad/configureButtons/android/AndroidManifest.xml b/examples/gamepad/configureButtons/android/AndroidManifest.xml
index 60f64fb..e3451ed 100644
--- a/examples/gamepad/configureButtons/android/AndroidManifest.xml
+++ b/examples/gamepad/configureButtons/android/AndroidManifest.xml
@@ -42,7 +42,7 @@
<!-- Background running -->
</activity>
</application>
- <uses-sdk android:minSdkVersion="12" android:targetSdkVersion="14"/>
+ <uses-sdk android:minSdkVersion="21" android:targetSdkVersion="21"/>
<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.
diff --git a/examples/gamepad/simple/android/AndroidManifest.xml b/examples/gamepad/simple/android/AndroidManifest.xml
index bdf824d..e527361 100644
--- a/examples/gamepad/simple/android/AndroidManifest.xml
+++ b/examples/gamepad/simple/android/AndroidManifest.xml
@@ -42,7 +42,7 @@
<!-- Background running -->
</activity>
</application>
- <uses-sdk android:minSdkVersion="12" android:targetSdkVersion="14"/>
+ <uses-sdk android:minSdkVersion="21" android:targetSdkVersion="21"/>
<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.