Android: Use FilePath as adb pull target for the deploystep

Helpful when the build dir is not on the local host.

Change-Id: I511ed7e4389a9a4dd5b5504bb35e21aadfb20285
Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
This commit is contained in:
hjk
2022-11-09 17:38:24 +01:00
parent 3f0f9a63c0
commit 90ee349980
2 changed files with 19 additions and 30 deletions

View File

@@ -16,8 +16,7 @@
namespace Utils { class QtcProcess; }
namespace Android {
namespace Internal {
namespace Android::Internal {
class AndroidDeployQtStepFactory : public ProjectExplorer::BuildStepFactory
{
@@ -78,7 +77,7 @@ private:
QString m_serialNumber;
QString m_avdName;
Utils::FilePath m_apkPath;
QMap<QString, QString> m_filesToPull;
QMap<QString, Utils::FilePath> m_filesToPull;
QStringList m_androidABIs;
Utils::BoolAspect *m_uninstallPreviousPackage = nullptr;
@@ -96,5 +95,4 @@ private:
Utils::FutureSynchronizer m_synchronizer;
};
}
} // namespace Android
} // Android::Internal