forked from qt-creator/qt-creator
Change device selection mechanism on Android
Currently, on deploy/debug steps on Android, an AndroidDeviceDialog is popped up each time a deployement is done to select a device. This can be avoidable by using Qt Creator DeviceKitAspect to have the list of devices easily selectable from the project mini-menu. This is better than the current way because it: * reduces the time from deployment to running the app * reduces the number of clicks * avoids having to select the same device each time or * if a default device is selected, this avoids having to go to project settings to reset the default device to be able to deploy to a new device. * it looks cleaner and more compatible with Creator. Task-number: QTCREATORBUG-23991 Change-Id: Ida4ab7245c1a3b0ca26c5ccdc9a21a072edf0725 Reviewed-by: Alessandro Portale <alessandro.portale@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
This commit is contained in:
@@ -26,6 +26,7 @@
|
||||
#pragma once
|
||||
|
||||
#include <QtGlobal>
|
||||
#include <utils/id.h>
|
||||
|
||||
namespace Android {
|
||||
namespace Internal {
|
||||
@@ -93,5 +94,15 @@ const char NdkLocation[] = "NdkLocation"; // FileName
|
||||
const char SdkLocation[] = "SdkLocation"; // FileName
|
||||
const char AndroidABIs[] = "AndroidABIs"; // QString
|
||||
|
||||
// Android Device
|
||||
const Utils::Id AndroidSerialNumber = "AndroidSerialNumber";
|
||||
const Utils::Id AndroidAvdName = "AndroidAvdName";
|
||||
const Utils::Id AndroidCpuAbi = "AndroidCpuAbi";
|
||||
const Utils::Id AndroidAvdTarget = "AndroidAvdTarget";
|
||||
const Utils::Id AndroidAvdDevice = "AndroidAvdDevice";
|
||||
const Utils::Id AndroidAvdSkin = "AndroidAvdSkin";
|
||||
const Utils::Id AndroidAvdSdcard = "AndroidAvdSdcard";
|
||||
const Utils::Id AndroidSdk = "AndroidSdk";
|
||||
|
||||
} // namespace Constants;
|
||||
} // namespace Android
|
||||
|
||||
Reference in New Issue
Block a user