Android: Enable setting environment variables for android apps

Change-Id: Id4625f081d6997dcabad9b01fb09d6c9c6ef7477
Reviewed-by: BogDan Vatra <bogdan@kdab.com>
This commit is contained in:
Vikas Pachdha
2018-08-02 11:00:06 +02:00
parent 51278a2bd5
commit d55373cab2
15 changed files with 116 additions and 32 deletions

View File

@@ -99,12 +99,11 @@ static QString toNdkArch(const QString &arch)
return QLatin1String("arch-") + arch;
}
AndroidDebugSupport::AndroidDebugSupport(RunControl *runControl, const QString &intentName,
const Utils::Environment &extraEnvVars)
AndroidDebugSupport::AndroidDebugSupport(RunControl *runControl, const QString &intentName)
: Debugger::DebuggerRunTool(runControl)
{
setDisplayName("AndroidDebugger");
m_runner = new AndroidRunner(runControl, intentName, extraEnvVars);
m_runner = new AndroidRunner(runControl, intentName);
addStartDependency(m_runner);
}