From 9cd18091402bfa9a1c190a882f60297f2b1ade11 Mon Sep 17 00:00:00 2001 From: Eskil Abrahamsen Blomfeldt Date: Thu, 2 May 2013 12:46:51 +0200 Subject: [PATCH] Make sure correct files are bundled on Android When we're bundling Qt inside the apk, we need to know which extra files to bundle which might be dependencies of the app. In this case, qml/ which contains the imports for Qt Quick 2, and the accessible/ plugins. Change-Id: I0782a6146a4d41d895db20d912eb6877e54ef6c8 Reviewed-by: Paul Olav Tvete --- src/quick/quick.pro | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/src/quick/quick.pro b/src/quick/quick.pro index eedc71d..919c9b0 100644 --- a/src/quick/quick.pro +++ b/src/quick/quick.pro @@ -16,6 +16,10 @@ QMAKE_DOCS = $$PWD/doc/qtquick.qdocconf ANDROID_LIB_DEPENDENCY_REPLACEMENTS = \ "plugins/platforms/android/libqtforandroid.so:plugins/platforms/android/libqtforandroidGL.so" +MODULE_PLUGIN_TYPES = \ + accessible +ANDROID_BUNDLED_FILES += \ + qml load(qt_module) -- 1.7.2.5