forked from qt-creator/qt-creator
- Add "Extension 4" if the name contain "-ext4" - Fix issue with two Tiramisu packages, now one of them conatin "Extension 4" in the end. Change-Id: Ib84807e9401acdef53c3dc1195dc3dc6ef34a57d Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
17 lines
531 B
C++
17 lines
531 B
C++
// Copyright (C) 2021 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#include "androiddeviceinfo.h"
|
|
|
|
namespace Android {
|
|
namespace Internal {
|
|
|
|
const char avdManufacturerError[] = "no longer exists as a device";
|
|
|
|
AndroidDeviceInfoList parseAvdList(const QString &output, Utils::FilePaths *avdErrorPaths);
|
|
int platformNameToApiLevel(const QString &platformName);
|
|
QString convertNameToExtension(const QString &name);
|
|
|
|
} // namespace Internal
|
|
} // namespace Android
|