forked from qt-creator/qt-creator
Move AVD Manager from Android Settings to Device Settings
Move AVD management and creation to Qt Creator's DeviceManager facilities. This allows AVDs to be created from the Devices settings page and their details and control/action buttons for starting/stopping, etc. are added there as well. This makes the process similar to other device types that Qt Creator supports, to get a similar experience. Task-number: QTCREATORBUG-23991 Change-Id: I16c52b3cc73035e0ee12fd54ae9dad4595c8cda5 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
This commit is contained in:
@@ -105,7 +105,8 @@ CreateAvdInfo AvdDialog::gatherCreateAVDInfo(QWidget *parent, AndroidSdkManager
|
||||
{
|
||||
CreateAvdInfo result;
|
||||
AvdDialog d(minApiLevel, sdkManager, abis, config, parent);
|
||||
if (d.exec() != QDialog::Accepted || !d.isValid())
|
||||
result.cancelled = (d.exec() != QDialog::Accepted);
|
||||
if (result.cancelled || !d.isValid())
|
||||
return result;
|
||||
|
||||
result.systemImage = d.systemImage();
|
||||
|
||||
Reference in New Issue
Block a user