forked from qt-creator/qt-creator
Android: Implement a "editor" for android manifest files
Change-Id: I18c00ab452db21e5aa1ae3ad2eff465cfeff54b6 Reviewed-by: Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@digia.com>
This commit is contained in:
@@ -61,25 +61,9 @@ public:
|
||||
static QString applicationName(ProjectExplorer::Target *target);
|
||||
static bool setApplicationName(ProjectExplorer::Target *target, const QString &name);
|
||||
|
||||
static QStringList permissions(ProjectExplorer::Target *target);
|
||||
static bool setPermissions(ProjectExplorer::Target *target, const QStringList &permissions);
|
||||
|
||||
static QString intentName(ProjectExplorer::Target *target);
|
||||
static QString activityName(ProjectExplorer::Target *target);
|
||||
|
||||
static int versionCode(ProjectExplorer::Target *target);
|
||||
static bool setVersionCode(ProjectExplorer::Target *target, int version);
|
||||
static QString versionName(ProjectExplorer::Target *target);
|
||||
static bool setVersionName(ProjectExplorer::Target *target, const QString &version);
|
||||
|
||||
static QIcon highDpiIcon(ProjectExplorer::Target *target);
|
||||
static bool setHighDpiIcon(ProjectExplorer::Target *target, const QString &iconFilePath);
|
||||
static QIcon mediumDpiIcon(ProjectExplorer::Target *target);
|
||||
static bool setMediumDpiIcon(ProjectExplorer::Target *target, const QString &iconFilePath);
|
||||
static QIcon lowDpiIcon(ProjectExplorer::Target *target);
|
||||
static bool setLowDpiIcon(ProjectExplorer::Target *target, const QString &iconFilePath);
|
||||
static bool ensureIconAttribute(ProjectExplorer::Target *target);
|
||||
|
||||
static QStringList availableTargetApplications(ProjectExplorer::Target *target);
|
||||
static QString targetApplication(ProjectExplorer::Target *target);
|
||||
static bool setTargetApplication(ProjectExplorer::Target *target, const QString &name);
|
||||
@@ -159,16 +143,6 @@ private:
|
||||
};
|
||||
static QString loadLocal(ProjectExplorer::Target *target, int apiLevel, ItemType item, const QString &attribute=QLatin1String("file"));
|
||||
|
||||
enum IconType
|
||||
{
|
||||
HighDPI,
|
||||
MediumDPI,
|
||||
LowDPI
|
||||
};
|
||||
static QString iconPath(ProjectExplorer::Target *target, IconType type);
|
||||
static QIcon icon(ProjectExplorer::Target *target, IconType type);
|
||||
static bool setIcon(ProjectExplorer::Target *target, IconType type, const QString &iconFileName);
|
||||
|
||||
static QStringList dependencies(const Utils::FileName &readelfPath, const QString &lib);
|
||||
static int setLibraryLevel(const QString &library, LibrariesMap &mapLibs);
|
||||
static bool qtLibrariesLessThan(const Library &a, const Library &b);
|
||||
|
||||
Reference in New Issue
Block a user