summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Blasche <alexander.blasche@qt.io>2019-04-24 16:00:24 +0200
committerAlex Blasche <alexander.blasche@qt.io>2019-04-25 06:18:19 +0000
commit75ded1adc0bb5b36cf9d7d3ff927e23842415ff1 (patch)
treeded3b8126a45b26c56f96cb445d8674d2fac19c8
parent368e6894f5a48d6e6d2bf11102f25f809724d682 (diff)
Update accelbubble android SDK version
The example requires a specific AndroidManifest. Unfortunately the manifest hardcodes the SDK version too. Since Qt 5.13 increased the minimal SDK version to 21, building this example failed. Fixes: QTBUG-75379 Change-Id: Ieb5e26e759521fbb712bf24e5d336d8a22906b85 Reviewed-by: Daniel Smith <Daniel.Smith@qt.io> Reviewed-by: Lorn Potter <lorn.potter@gmail.com>
-rw-r--r--examples/sensors/accelbubble/android/AndroidManifest.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/sensors/accelbubble/android/AndroidManifest.xml b/examples/sensors/accelbubble/android/AndroidManifest.xml
index f3104443..4627978e 100644
--- a/examples/sensors/accelbubble/android/AndroidManifest.xml
+++ b/examples/sensors/accelbubble/android/AndroidManifest.xml
@@ -65,7 +65,7 @@
</application>
- <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="16"/>
+ <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.