forked from qt-creator/qt-creator
Android: Unexport Android plugin
It doesn't seem that any class from this plugin is used outside. Change-Id: I88a63e4c41cbd4b20f0de8bbd05668f55bafdc97 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
This commit is contained in:
@@ -3,7 +3,6 @@ add_qtc_plugin(Android
|
||||
PLUGIN_DEPENDS Core Debugger ProjectExplorer QtSupport LanguageClient
|
||||
SOURCES
|
||||
android.qrc
|
||||
android_global.h
|
||||
androidtr.h
|
||||
androidavdmanager.cpp androidavdmanager.h
|
||||
androidbuildapkstep.cpp androidbuildapkstep.h
|
||||
|
@@ -17,7 +17,7 @@ Project {
|
||||
Depends { name: "Utils" }
|
||||
|
||||
files: [
|
||||
"android_global.h", "androidtr.h",
|
||||
"androidtr.h",
|
||||
"android.qrc",
|
||||
"androidavdmanager.cpp",
|
||||
"androidavdmanager.h",
|
||||
|
@@ -1,14 +0,0 @@
|
||||
// Copyright (C) 2016 BogDan Vatra <bog_dan_ro@yahoo.com>
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <qglobal.h>
|
||||
|
||||
#if defined(ANDROID_LIBRARY)
|
||||
# define ANDROID_EXPORT Q_DECL_EXPORT
|
||||
#elif defined(ANDROID_STATIC_LIBRARY)
|
||||
# define ANDROID_EXPORT
|
||||
#else
|
||||
# define ANDROID_EXPORT Q_DECL_IMPORT
|
||||
#endif
|
@@ -4,7 +4,6 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "android_global.h"
|
||||
#include "androiddeviceinfo.h"
|
||||
#include "androidsdkmanager.h"
|
||||
#include "androidsdkpackage.h"
|
||||
@@ -56,7 +55,7 @@ public:
|
||||
bool containsVersion(const QVersionNumber &qtVersion) const;
|
||||
};
|
||||
|
||||
class ANDROID_EXPORT AndroidConfig
|
||||
class AndroidConfig
|
||||
{
|
||||
public:
|
||||
void load(const QSettings &settings);
|
||||
@@ -183,7 +182,7 @@ private:
|
||||
mutable QHash<QString, QString> m_serialNumberToDeviceName;
|
||||
};
|
||||
|
||||
class ANDROID_EXPORT AndroidConfigurations : public QObject
|
||||
class AndroidConfigurations : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
|
@@ -4,8 +4,6 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "android_global.h"
|
||||
|
||||
#include <QAbstractItemModel>
|
||||
#include <QStringList>
|
||||
|
||||
@@ -13,7 +11,7 @@ namespace ProjectExplorer { class BuildSystem; }
|
||||
|
||||
namespace Android {
|
||||
|
||||
class ANDROID_EXPORT AndroidExtraLibraryListModel : public QAbstractItemModel
|
||||
class AndroidExtraLibraryListModel : public QAbstractItemModel
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
|
@@ -3,8 +3,6 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "android_global.h"
|
||||
|
||||
#include <projectexplorer/runconfiguration.h>
|
||||
|
||||
namespace Android {
|
||||
|
@@ -3,8 +3,6 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "android_global.h"
|
||||
|
||||
#include <utils/fileutils.h>
|
||||
#include <utils/wizard.h>
|
||||
|
||||
|
Reference in New Issue
Block a user