AndroidDeployQtStep: Keep data requested from user around

Reuse the data for the following AndroidDeployQtSteps that
are in the same batch submitted to the BuildManager.

This should fix Qt Creator asking for the device multiple times
when building projects that depend on other projects.

Task-number: QTCREATORBUG-15338
Change-Id: I4fbb04d4d8e492f6a766461bca3e6f9683824def
Reviewed-by: Mitch Curtis <mitch.curtis@theqtcompany.com>
Reviewed-by: Niels Weber <niels.weber@theqtcompany.com>
This commit is contained in:
Tobias Hunger
2015-11-13 12:56:36 +01:00
parent f996f05b0f
commit 8d936b8aa6
2 changed files with 23 additions and 2 deletions

View File

@@ -90,6 +90,8 @@ public:
UninstallType uninstallPreviousPackage();
AndroidDeviceInfo deviceInfo() const;
public slots:
void setUninstallPreviousPackage(bool uninstall);
@@ -141,6 +143,7 @@ private:
QString m_workingDirectory;
Utils::Environment m_environment;
Utils::QtcProcess *m_process;
AndroidDeviceInfo m_deviceInfo;
};
}