From 93a1364b05480b51d21a00904a1178c45dee140f Mon Sep 17 00:00:00 2001 From: Anton Danielsson Date: Thu, 30 May 2019 15:16:07 +0200 Subject: [PATCH] Fix incorrect assignment of qml-root-path Change-Id: I958427e7fdfd721c90cac52a33dbb17b0f3fdc1c Reviewed-by: BogDan Vatra --- src/plugins/android/androidbuildapkstep.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))