forked from qt-creator/qt-creator
Android: Remove m_extraAppParams and m_extraEnvVars from Runnable
The idea was actually to make AndroidRunnable and "everything else", i.e. StandardRunnable more similar over time to lessen the impact of the "matrix" problem. The two removed items are avoidable. Change-Id: I8ef011d76e2ad0154194ff5141ef8eb92cf235f3 Reviewed-by: Vikas Pachdha <vikas.pachdha@qt.io>
This commit is contained in:
@@ -60,6 +60,8 @@ public:
|
||||
void logcatReadStandardOutput();
|
||||
void logcatProcess(const QByteArray &text, QByteArray &buffer, bool onlyError);
|
||||
void setAndroidDeviceInfo(const AndroidDeviceInfo &info);
|
||||
void setExtraEnvVars(const Utils::Environment &extraEnvVars);
|
||||
void setExtraAppParams(const QString &extraAppParams);
|
||||
|
||||
virtual void asyncStart();
|
||||
virtual void asyncStop();
|
||||
@@ -104,6 +106,8 @@ protected:
|
||||
std::unique_ptr<QProcess, Deleter> m_jdbProcess;
|
||||
QString m_deviceSerialNumber;
|
||||
int m_apiLevel = -1;
|
||||
QString m_extraAppParams;
|
||||
Utils::Environment m_extraEnvVars;
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user