Commit 73e4f959 authored by Eskil Abrahamsen Blomfeldt's avatar Eskil Abrahamsen Blomfeldt Committed by Eskil Abrahamsen Blomfeldt
Browse files

androiddeployqt: Force Qt Gui dependency for all apps


Currently, the only way to launch an Android application is through
the platform plugin, which of course depends on Qt Gui. This causes
problems running corelib autotests, since they have QT = core in
the .pro file and thus will not deploy or load the platform plugin.

At some point, we may have a way to launch pure corelib-applications
on Android (like services), but until then, we need to hardcore the
dependency on Qt Gui to make sure these autotests run properly.

Change-Id: Ica794af972a06ec021c1fa28333866296eab96e0
Reviewed-by: default avatarBogDan Vatra <bogdan@kde.org>
Showing with 11 additions and 0 deletions
...@@ -1364,6 +1364,17 @@ bool readDependencies(Options *options) ...@@ -1364,6 +1364,17 @@ bool readDependencies(Options *options)
if (!readDependenciesFromElf(options, options->applicationBinary, &usedDependencies, &remainingDependencies)) if (!readDependenciesFromElf(options, options->applicationBinary, &usedDependencies, &remainingDependencies))
return false; return false;
// Until we have support non-gui applications on Android, always add Qt Gui
// as a dependency (otherwise the platform plugin cannot be deployed, and
// the application will not run).
QLatin1String guiLib("lib/libQt5Gui.so");
if (!options->qtDependencies.contains(guiLib)) {
options->qtDependencies.append(guiLib);
usedDependencies.insert(guiLib);
if (!readAndroidDependencyXml(options, QLatin1String("Qt5Gui"), &usedDependencies, &remainingDependencies))
return false;
}
QString qtDir = options->qtInstallDirectory + QLatin1Char('/'); QString qtDir = options->qtInstallDirectory + QLatin1Char('/');
while (!remainingDependencies.isEmpty()) { while (!remainingDependencies.isEmpty()) {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment