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

@@ -32,13 +32,12 @@ namespace Android {
namespace Internal {
AndroidQmlToolingSupport::AndroidQmlToolingSupport(RunControl *runControl,
const QString &intentName,
const Utils::Environment &extraEnvVars)
const QString &intentName)
: RunWorker(runControl)
{
setDisplayName("AndroidQmlToolingSupport");
auto runner = new AndroidRunner(runControl, intentName, extraEnvVars);
auto runner = new AndroidRunner(runControl, intentName);
addStartDependency(runner);
auto profiler = runControl->createWorker(runControl->runMode());