2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2021 The Qt Company Ltd.
|
2022-12-21 10:12:09 +01:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2021-05-06 15:19:56 +02:00
|
|
|
|
|
|
|
|
#include "androiddeviceinfo.h"
|
|
|
|
|
|
|
|
|
|
namespace Android {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
const char avdManufacturerError[] = "no longer exists as a device";
|
|
|
|
|
|
2022-11-25 19:43:34 +01:00
|
|
|
AndroidDeviceInfoList parseAvdList(const QString &output, Utils::FilePaths *avdErrorPaths);
|
2022-02-02 16:32:24 +01:00
|
|
|
int platformNameToApiLevel(const QString &platformName);
|
2023-01-17 16:03:23 +01:00
|
|
|
QString convertNameToExtension(const QString &name);
|
2021-05-06 15:19:56 +02:00
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Android
|