summaryrefslogtreecommitdiffstats
path: root/mkspecs
diff options
context:
space:
mode:
authorEskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@digia.com>2013-09-23 17:09:45 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-09-26 08:40:38 +0200
commit0a3a05f418a7c79cf11f0851f9793c558e3656e8 (patch)
treedd6f924aac18c14b8f749e146a3f398b1d43478f /mkspecs
parent935e52108d54f76fbcdc09479125ec5f7a3bb5b2 (diff)
Fix setting android minimum/target version
We need to output integers here, since these are interpreted as integers when reading the json. Change-Id: I4206b3ac347b61a357bd2658f146979e06690141 Reviewed-by: Paul Olav Tvete <paul.tvete@digia.com>
Diffstat (limited to 'mkspecs')
-rw-r--r--mkspecs/features/android_deployment_settings.prf4
1 files changed, 2 insertions, 2 deletions
diff --git a/mkspecs/features/android_deployment_settings.prf b/mkspecs/features/android_deployment_settings.prf
index 2f64d47f04..1e54b67789 100644
--- a/mkspecs/features/android_deployment_settings.prf
+++ b/mkspecs/features/android_deployment_settings.prf
@@ -45,10 +45,10 @@ contains(TEMPLATE, ".*app"):!build_pass:!android-no-sdk {
FILE_CONTENT += " \"android-package\": \"$$ANDROID_PACKAGE\","
!isEmpty(ANDROID_MINIMUM_VERSION): \
- FILE_CONTENT += " \"android-minimum-version\": \"$$ANDROID_MINIMUM_VERSION\","
+ FILE_CONTENT += " \"android-minimum-version\": $$ANDROID_MINIMUM_VERSION,"
!isEmpty(ANDROID_TARGET_VERSION): \
- FILE_CONTENT += " \"android-target-version\": \"$$ANDROID_TARGET_VERSION\","
+ FILE_CONTENT += " \"android-target-version\": $$ANDROID_TARGET_VERSION,"
!isEmpty(ANDROID_APP_NAME): \
FILE_CONTENT += " \"android-app-name\": \"$$ANDROID_APP_NAME\","