forked from qt-creator/qt-creator
Android: Fix app_process not being copied for 32bit cpu abi
Task-number: QTCREATORBUG-20084 Change-Id: Id06cfb6250030851211c7c170f8d0c8b0491b3d8 Reviewed-by: Eike Ziller <eike.ziller@qt.io> Reviewed-by: hjk <hjk@qt.io> Reviewed-by: BogDan Vatra <bogdan@kdab.com>
This commit is contained in:
@@ -158,8 +158,8 @@ bool AndroidDeployQtStep::init(QList<const BuildStep *> &earlierSteps)
|
||||
m_filesToPull["/system/bin/app_process32"] = buildDir + "app_process";
|
||||
}
|
||||
} else {
|
||||
m_appProcessBinaries << QLatin1String("/system/bin/app_process32")
|
||||
<< QLatin1String("/system/bin/app_process");
|
||||
m_filesToPull["/system/bin/app_process32"] = buildDir + "app_process";
|
||||
m_filesToPull["/system/bin/app_process"] = buildDir + "app_process";
|
||||
}
|
||||
|
||||
m_filesToPull["/system/bin/" + linkerName] = buildDir + linkerName;
|
||||
|
@@ -116,7 +116,6 @@ private:
|
||||
QString m_avdName;
|
||||
QString m_apkPath;
|
||||
QMap<QString, QString> m_filesToPull;
|
||||
QStringList m_appProcessBinaries;
|
||||
|
||||
QString m_targetArch;
|
||||
bool m_uninstallPreviousPackage = false;
|
||||
|
Reference in New Issue
Block a user