aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/android
diff options
context:
space:
mode:
authorAnton Danielsson <anton.danielsson@dirac.com>2019-05-30 15:16:07 +0200
committerAnton Danielsson <anton.danielsson@dirac.com>2019-05-31 06:46:29 +0000
commit93a1364b05480b51d21a00904a1178c45dee140f (patch)
tree38656b07ce2e9c58cf284e9452471f14f8594f34 /src/plugins/android
parentb500119fd754cb429e97ceed946731a383aa01e3 (diff)
Fix incorrect assignment of qml-root-path
Change-Id: I958427e7fdfd721c90cac52a33dbb17b0f3fdc1c Reviewed-by: BogDan Vatra <bogdan@kdab.com>
Diffstat (limited to 'src/plugins/android')
-rw-r--r--src/plugins/android/androidbuildapkstep.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/android/androidbuildapkstep.cpp b/src/plugins/android/androidbuildapkstep.cpp
index 8adc12c6d6d..b9d77469b7c 100644
--- a/src/plugins/android/androidbuildapkstep.cpp
+++ b/src/plugins/android/androidbuildapkstep.cpp
@@ -415,7 +415,7 @@ void AndroidBuildApkStep::doRun()
QString qmlRootPath = node->data("QML_ROOT_PATH").toString();
if (qmlRootPath.isEmpty())
qmlRootPath = target()->project()->rootProjectDirectory().toString();
- deploySettings["qml-root-path"] = qmlImportPath;
+ deploySettings["qml-root-path"] = qmlRootPath;
QFile f{bc->buildDirectory().pathAppended("android_deployment_settings.json").toString()};
if (!f.open(QIODevice::WriteOnly))