forked from qt-creator/qt-creator
Android: Enable setting environment variables for android apps
Change-Id: Id4625f081d6997dcabad9b01fb09d6c9c6ef7477 Reviewed-by: BogDan Vatra <bogdan@kdab.com>
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user