aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorBogDan Vatra <bogdan@kde.org>2019-04-22 16:54:48 +0300
committerBogDan Vatra <bogdan@kdab.com>2019-04-24 17:54:02 +0000
commit7b6550e3b7cc7c01eeeda14aa1ca3bb619c4f3a4 (patch)
tree814dcde2a8716a0a0f8586a61497363899705b05 /tests
parent1e61f0b35d5822ecf2b4bf960c7658d275a6b1f9 (diff)
[Android] Allow the user to override version attributes
Allow the user to override the android::versionCode and android::versionName from QBS project file. Change-Id: I437294e8f6b52c1072bb1c992d1c7ac5233896c9 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/blackbox/testdata-android/no-native/no-native.qbs2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/auto/blackbox/testdata-android/no-native/no-native.qbs b/tests/auto/blackbox/testdata-android/no-native/no-native.qbs
index 74514f604..7aab4e9fd 100644
--- a/tests/auto/blackbox/testdata-android/no-native/no-native.qbs
+++ b/tests/auto/blackbox/testdata-android/no-native/no-native.qbs
@@ -4,4 +4,6 @@ Application {
Android.sdk.sourceSetDir: Android.sdk.sdkDir
+ "/samples/android-BasicMediaDecoder/Application/src/main"
+ Android.sdk.versionCode: 5
+ Android.sdk.versionName: "5.0"
}