diff options
author | Eskil Abrahamsen Blomfeldt <[email protected]> | 2013-01-09 16:54:48 +0100 |
---|---|---|
committer | Eskil Abrahamsen Blomfeldt <[email protected]> | 2013-01-18 15:52:29 +0100 |
commit | 51273ab864ee418fda4043e7bee0496ac68f4467 (patch) | |
tree | ee06dca362aca41611d63ec82407a8ece5ed6171 /src/plugins/android/androiddeploystep.cpp | |
parent | baffa492d959f5a8928839689163203f195fe8bd (diff) |
Deploy Qt Quick 2 imports to device as well
Qt Quick 2 imports are installed to $QTDIR/qml instead of
$QTDIR/imports. We have to make sure they are available
on the device in order to use Qt Quick.
Change-Id: Iaa3e429f6706a5e200d5a1672b63059ddf39e770
Reviewed-by: Eskil Abrahamsen Blomfeldt <[email protected]>
Diffstat (limited to 'src/plugins/android/androiddeploystep.cpp')
-rw-r--r-- | src/plugins/android/androiddeploystep.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/android/androiddeploystep.cpp b/src/plugins/android/androiddeploystep.cpp index 3359924d5bb..286e1474151 100644 --- a/src/plugins/android/androiddeploystep.cpp +++ b/src/plugins/android/androiddeploystep.cpp @@ -264,6 +264,8 @@ bool AndroidDeployStep::deployPackage() tempPath + QLatin1String("/plugins"), stripFiles); copyLibs(m_qtVersionSourcePath + QLatin1String("/imports"), tempPath + QLatin1String("/imports"), stripFiles); + copyLibs(m_qtVersionSourcePath + QLatin1String("/qml"), + tempPath + QLatin1String("/qml"), stripFiles); copyLibs(m_qtVersionSourcePath + QLatin1String("/jar"), tempPath + QLatin1String("/jar"), stripFiles); AndroidPackageCreationStep::stripAndroidLibs(stripFiles, target()->activeRunConfiguration()->abi().architecture()); |