summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Blasche <alexander.blasche@qt.io>2019-04-25 10:41:14 +0200
committerAlex Blasche <alexander.blasche@qt.io>2019-04-25 08:54:06 +0000
commitac5200797be2dfb1f9fee9dafc3d1cb27c428ad2 (patch)
tree51ab47fe3ce4d963b31f95e83f02c8a8ee9c37d4
parentd37dbf7727e1e7f3dce70d5855ec407e2e8a6e54 (diff)
downloadqtconnectivity-ac5200797be2dfb1f9fee9dafc3d1cb27c428ad2.tar.gz
Fix nfc corkboard example on Android
The example specified an Android SDK version to low for Qt's general min SDK version which was raised to v21 in Qt 5.13. Change-Id: I3555df2aee90bcda6e5493cd8bc10b6873279887 Reviewed-by: BogDan Vatra <bogdan@kdab.com>
-rw-r--r--examples/nfc/corkboard/android/AndroidManifest.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/nfc/corkboard/android/AndroidManifest.xml b/examples/nfc/corkboard/android/AndroidManifest.xml
index 68566b1b..ac0c5a67 100644
--- a/examples/nfc/corkboard/android/AndroidManifest.xml
+++ b/examples/nfc/corkboard/android/AndroidManifest.xml
@@ -72,7 +72,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.