2012-04-18 20:30:57 +03:00
|
|
|
/**************************************************************************
|
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** Copyright (C) 2015 BogDan Vatra <bog_dan_ro@yahoo.com>
|
|
|
|
** Contact: http://www.qt.io/licensing
|
2012-04-18 20:30:57 +03:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2012-04-18 20:30:57 +03:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Commercial License Usage
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2015-01-14 18:07:15 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms and
|
|
|
|
** conditions see http://www.qt.io/terms-conditions. For further information
|
2014-10-01 13:21:18 +02:00
|
|
|
** use the contact form at http://www.qt.io/contact-us.
|
2012-04-18 20:30:57 +03:00
|
|
|
**
|
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
2014-10-01 13:21:18 +02:00
|
|
|
** General Public License version 2.1 or version 3 as published by the Free
|
|
|
|
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
|
|
|
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
|
|
|
** following information to ensure the GNU Lesser General Public License
|
|
|
|
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2012-10-02 09:12:39 +02:00
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** In addition, as a special exception, The Qt Company gives you certain additional
|
|
|
|
** rights. These rights are described in The Qt Company LGPL Exception
|
2012-04-18 20:30:57 +03:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2012-04-18 20:30:57 +03:00
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
#include "androidmanager.h"
|
2015-03-05 11:56:15 +01:00
|
|
|
#include "androidconstants.h"
|
2012-04-18 20:30:57 +03:00
|
|
|
#include "androiddeployconfiguration.h"
|
|
|
|
#include "androidconfigurations.h"
|
|
|
|
#include "androidrunconfiguration.h"
|
|
|
|
#include "androidglobal.h"
|
2013-01-25 16:49:22 +01:00
|
|
|
#include "androidtoolchain.h"
|
2013-09-17 18:24:57 +02:00
|
|
|
#include "androiddeployqtstep.h"
|
2014-06-24 16:47:38 +02:00
|
|
|
#include "androidqtsupport.h"
|
2014-06-25 15:42:11 +02:00
|
|
|
#include "androidqtversion.h"
|
|
|
|
#include "androidbuildapkstep.h"
|
2012-04-18 20:30:57 +03:00
|
|
|
|
2013-04-16 17:27:06 +02:00
|
|
|
#include <coreplugin/documentmanager.h>
|
2013-09-17 18:24:57 +02:00
|
|
|
#include <coreplugin/messagemanager.h>
|
2014-03-11 18:09:23 +01:00
|
|
|
#include <coreplugin/icore.h>
|
2014-06-24 16:47:38 +02:00
|
|
|
|
|
|
|
#include <extensionsystem/pluginmanager.h>
|
|
|
|
|
2014-06-25 15:42:11 +02:00
|
|
|
#include <projectexplorer/buildconfiguration.h>
|
|
|
|
#include <projectexplorer/project.h>
|
2012-04-24 15:49:09 +02:00
|
|
|
#include <projectexplorer/projectexplorer.h>
|
|
|
|
#include <projectexplorer/session.h>
|
|
|
|
#include <projectexplorer/target.h>
|
2014-06-25 15:42:11 +02:00
|
|
|
|
2012-05-16 16:24:16 +02:00
|
|
|
#include <qtsupport/customexecutablerunconfiguration.h>
|
2012-09-03 18:31:44 +02:00
|
|
|
#include <qtsupport/qtkitinformation.h>
|
2012-04-24 15:49:09 +02:00
|
|
|
#include <qtsupport/qtsupportconstants.h>
|
2014-06-16 18:25:52 +04:00
|
|
|
#include <utils/algorithm.h>
|
2012-04-18 20:30:57 +03:00
|
|
|
|
|
|
|
#include <QDir>
|
|
|
|
#include <QFileSystemWatcher>
|
|
|
|
#include <QList>
|
|
|
|
#include <QProcess>
|
|
|
|
#include <QMessageBox>
|
|
|
|
#include <QApplication>
|
|
|
|
#include <QDomDocument>
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
const QLatin1String AndroidManifestName("AndroidManifest.xml");
|
|
|
|
const QLatin1String AndroidLibsFileName("/res/values/libs.xml");
|
|
|
|
const QLatin1String AndroidDefaultPropertiesName("project.properties");
|
2014-06-25 15:42:11 +02:00
|
|
|
const QLatin1String AndroidDeviceSn("AndroidDeviceSerialNumber");
|
|
|
|
|
2012-04-18 20:30:57 +03:00
|
|
|
} // anonymous namespace
|
|
|
|
|
|
|
|
namespace Android {
|
|
|
|
|
2014-06-25 15:42:11 +02:00
|
|
|
using namespace Internal;
|
|
|
|
|
2014-07-22 13:45:41 +02:00
|
|
|
class Library
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Library()
|
|
|
|
{ level = -1; }
|
|
|
|
int level;
|
|
|
|
QStringList dependencies;
|
|
|
|
QString name;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef QMap<QString, Library> LibrariesMap;
|
|
|
|
|
|
|
|
static bool openXmlFile(QDomDocument &doc, const Utils::FileName &fileName);
|
|
|
|
static bool openManifest(ProjectExplorer::Target *target, QDomDocument &doc);
|
|
|
|
static QStringList libsXml(ProjectExplorer::Target *target, const QString &tag);
|
|
|
|
|
|
|
|
enum ItemType
|
|
|
|
{
|
|
|
|
Lib,
|
|
|
|
Jar,
|
|
|
|
BundledFile,
|
|
|
|
BundledJar
|
|
|
|
};
|
|
|
|
static QString loadLocal(ProjectExplorer::Target *target, int apiLevel, ItemType item, const QString &attribute=QLatin1String("file"));
|
|
|
|
|
|
|
|
|
2014-06-25 15:42:11 +02:00
|
|
|
bool AndroidManager::supportsAndroid(const ProjectExplorer::Kit *kit)
|
2012-04-18 20:30:57 +03:00
|
|
|
{
|
2014-06-25 15:42:11 +02:00
|
|
|
QtSupport::BaseQtVersion *version = QtSupport::QtKitInformation::qtVersion(kit);
|
2012-07-16 11:04:42 +02:00
|
|
|
return version && version->platformName() == QLatin1String(QtSupport::Constants::ANDROID_PLATFORM);
|
2012-04-24 15:49:09 +02:00
|
|
|
}
|
2012-04-18 20:30:57 +03:00
|
|
|
|
2014-06-25 15:42:11 +02:00
|
|
|
bool AndroidManager::supportsAndroid(const ProjectExplorer::Target *target)
|
|
|
|
{
|
|
|
|
return supportsAndroid(target->kit());
|
|
|
|
}
|
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
QString AndroidManager::packageName(ProjectExplorer::Target *target)
|
|
|
|
{
|
|
|
|
QDomDocument doc;
|
|
|
|
if (!openManifest(target, doc))
|
|
|
|
return QString();
|
|
|
|
QDomElement manifestElem = doc.documentElement();
|
|
|
|
return manifestElem.attribute(QLatin1String("package"));
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
2014-10-24 17:53:05 +02:00
|
|
|
QString AndroidManager::packageName(const Utils::FileName &manifestFile)
|
|
|
|
{
|
|
|
|
QDomDocument doc;
|
|
|
|
if (!openXmlFile(doc, manifestFile))
|
|
|
|
return QString();
|
|
|
|
QDomElement manifestElem = doc.documentElement();
|
|
|
|
return manifestElem.attribute(QLatin1String("package"));
|
|
|
|
}
|
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
QString AndroidManager::intentName(ProjectExplorer::Target *target)
|
2012-04-18 20:30:57 +03:00
|
|
|
{
|
2012-04-24 15:49:09 +02:00
|
|
|
return packageName(target) + QLatin1Char('/') + activityName(target);
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
QString AndroidManager::activityName(ProjectExplorer::Target *target)
|
2012-04-18 20:30:57 +03:00
|
|
|
{
|
2012-04-24 15:49:09 +02:00
|
|
|
QDomDocument doc;
|
|
|
|
if (!openManifest(target, doc))
|
|
|
|
return QString();
|
|
|
|
QDomElement activityElem = doc.documentElement().firstChildElement(QLatin1String("application")).firstChildElement(QLatin1String("activity"));
|
|
|
|
return activityElem.attribute(QLatin1String("android:name"));
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
2013-08-28 15:23:04 +02:00
|
|
|
int AndroidManager::minimumSDK(ProjectExplorer::Target *target)
|
|
|
|
{
|
|
|
|
QDomDocument doc;
|
2015-01-27 18:46:40 +01:00
|
|
|
if (!openXmlFile(doc, AndroidManager::manifestSourcePath(target)))
|
2013-08-28 15:23:04 +02:00
|
|
|
return 0;
|
|
|
|
QDomElement manifestElem = doc.documentElement();
|
|
|
|
QDomElement usesSdk = manifestElem.firstChildElement(QLatin1String("uses-sdk"));
|
|
|
|
if (usesSdk.isNull())
|
|
|
|
return 0;
|
|
|
|
if (usesSdk.hasAttribute(QLatin1String("android:minSdkVersion"))) {
|
|
|
|
bool ok;
|
|
|
|
int tmp = usesSdk.attribute(QLatin1String("android:minSdkVersion")).toInt(&ok);
|
|
|
|
if (ok)
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-08-28 15:20:54 +02:00
|
|
|
QString AndroidManager::buildTargetSDK(ProjectExplorer::Target *target)
|
2012-04-18 20:30:57 +03:00
|
|
|
{
|
2014-06-25 15:42:11 +02:00
|
|
|
AndroidBuildApkStep *androidBuildApkStep
|
|
|
|
= AndroidGlobal::buildStep<AndroidBuildApkStep>(target->activeBuildConfiguration());
|
|
|
|
if (androidBuildApkStep)
|
|
|
|
return androidBuildApkStep->buildTargetSdk();
|
|
|
|
|
|
|
|
QString fallback = AndroidConfig::apiLevelNameFor(AndroidConfigurations::currentConfig().highestAndroidSdk());
|
|
|
|
return fallback;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AndroidManager::signPackage(ProjectExplorer::Target *target)
|
|
|
|
{
|
|
|
|
AndroidBuildApkStep *androidBuildApkStep
|
|
|
|
= AndroidGlobal::buildStep<AndroidBuildApkStep>(target->activeBuildConfiguration());
|
|
|
|
if (androidBuildApkStep)
|
|
|
|
return androidBuildApkStep->signPackage();
|
|
|
|
return false;
|
2012-04-24 15:49:09 +02:00
|
|
|
}
|
2012-04-18 20:30:57 +03:00
|
|
|
|
2013-05-03 15:10:21 +02:00
|
|
|
QString AndroidManager::targetArch(ProjectExplorer::Target *target)
|
|
|
|
{
|
2014-06-25 15:42:11 +02:00
|
|
|
AndroidQtVersion *qt = static_cast<AndroidQtVersion *>(QtSupport::QtKitInformation::qtVersion(target->kit()));
|
|
|
|
return qt->targetArch();
|
2013-05-03 15:10:21 +02:00
|
|
|
}
|
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
Utils::FileName AndroidManager::dirPath(ProjectExplorer::Target *target)
|
2012-04-18 20:30:57 +03:00
|
|
|
{
|
2015-01-27 18:46:40 +01:00
|
|
|
if (target->activeBuildConfiguration())
|
|
|
|
return target->activeBuildConfiguration()->buildDirectory().appendPath(QLatin1String(Constants::ANDROID_BUILDDIRECTORY));
|
|
|
|
return Utils::FileName();
|
|
|
|
}
|
|
|
|
|
|
|
|
Utils::FileName AndroidManager::manifestSourcePath(ProjectExplorer::Target *target)
|
|
|
|
{
|
|
|
|
AndroidQtSupport *androidQtSupport = AndroidManager::androidQtSupport(target);
|
|
|
|
Utils::FileName source = androidQtSupport->manifestSourcePath(target);
|
|
|
|
if (!source.isEmpty())
|
|
|
|
return source;
|
|
|
|
return manifestPath(target);
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
Utils::FileName AndroidManager::manifestPath(ProjectExplorer::Target *target)
|
2012-04-18 20:30:57 +03:00
|
|
|
{
|
2012-04-24 15:49:09 +02:00
|
|
|
return dirPath(target).appendPath(AndroidManifestName);
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
Utils::FileName AndroidManager::libsPath(ProjectExplorer::Target *target)
|
2012-04-18 20:30:57 +03:00
|
|
|
{
|
2012-04-24 15:49:09 +02:00
|
|
|
return dirPath(target).appendPath(AndroidLibsFileName);
|
|
|
|
}
|
2012-04-18 20:30:57 +03:00
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
Utils::FileName AndroidManager::defaultPropertiesPath(ProjectExplorer::Target *target)
|
2012-04-18 20:30:57 +03:00
|
|
|
{
|
2012-04-24 15:49:09 +02:00
|
|
|
return dirPath(target).appendPath(AndroidDefaultPropertiesName);
|
|
|
|
}
|
2012-04-18 20:30:57 +03:00
|
|
|
|
2013-04-19 12:27:58 +02:00
|
|
|
bool AndroidManager::bundleQt(ProjectExplorer::Target *target)
|
|
|
|
{
|
2014-06-25 15:42:11 +02:00
|
|
|
AndroidBuildApkStep *androidBuildApkStep
|
|
|
|
= AndroidGlobal::buildStep<AndroidBuildApkStep>(target->activeBuildConfiguration());
|
|
|
|
if (androidBuildApkStep)
|
|
|
|
return androidBuildApkStep->deployAction() == AndroidBuildApkStep::BundleLibrariesDeployment;
|
2013-04-19 12:27:58 +02:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-09-17 18:24:57 +02:00
|
|
|
bool AndroidManager::useLocalLibs(ProjectExplorer::Target *target)
|
|
|
|
{
|
2014-06-25 15:42:11 +02:00
|
|
|
AndroidBuildApkStep *androidBuildApkStep
|
|
|
|
= AndroidGlobal::buildStep<AndroidBuildApkStep>(target->activeBuildConfiguration());
|
|
|
|
if (androidBuildApkStep) {
|
|
|
|
return androidBuildApkStep->deployAction() == AndroidBuildApkStep::DebugDeployment
|
|
|
|
|| androidBuildApkStep->deployAction() == AndroidBuildApkStep::BundleLibrariesDeployment;
|
2013-09-17 18:24:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString AndroidManager::deviceSerialNumber(ProjectExplorer::Target *target)
|
|
|
|
{
|
2014-06-25 15:42:11 +02:00
|
|
|
return target->namedSettings(AndroidDeviceSn).toString();
|
|
|
|
}
|
|
|
|
|
|
|
|
void AndroidManager::setDeviceSerialNumber(ProjectExplorer::Target *target, const QString &deviceSerialNumber)
|
|
|
|
{
|
|
|
|
target->setNamedSettings(AndroidDeviceSn, deviceSerialNumber);
|
2013-09-17 18:24:57 +02:00
|
|
|
}
|
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
Utils::FileName AndroidManager::localLibsRulesFilePath(ProjectExplorer::Target *target)
|
2012-04-18 20:30:57 +03:00
|
|
|
{
|
2012-09-03 18:31:44 +02:00
|
|
|
QtSupport::BaseQtVersion *version = QtSupport::QtKitInformation::qtVersion(target->kit());
|
2012-04-24 15:49:09 +02:00
|
|
|
if (!version)
|
|
|
|
return Utils::FileName();
|
2013-02-15 16:07:54 +01:00
|
|
|
return Utils::FileName::fromString(version->qmakeProperty("QT_INSTALL_LIBS"));
|
2012-04-24 15:49:09 +02:00
|
|
|
}
|
2012-04-18 20:30:57 +03:00
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
QString AndroidManager::loadLocalLibs(ProjectExplorer::Target *target, int apiLevel)
|
|
|
|
{
|
|
|
|
return loadLocal(target, apiLevel, Lib);
|
|
|
|
}
|
2012-04-18 20:30:57 +03:00
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
QString AndroidManager::loadLocalJars(ProjectExplorer::Target *target, int apiLevel)
|
|
|
|
{
|
2013-04-19 12:27:58 +02:00
|
|
|
ItemType type = bundleQt(target) ? BundledJar : Jar;
|
|
|
|
return loadLocal(target, apiLevel, type);
|
2012-04-24 15:49:09 +02:00
|
|
|
}
|
2012-04-18 20:30:57 +03:00
|
|
|
|
2013-01-06 16:23:08 +02:00
|
|
|
QString AndroidManager::loadLocalJarsInitClasses(ProjectExplorer::Target *target, int apiLevel)
|
|
|
|
{
|
2013-04-19 12:27:58 +02:00
|
|
|
ItemType type = bundleQt(target) ? BundledJar : Jar;
|
|
|
|
return loadLocal(target, apiLevel, type, QLatin1String("initClass"));
|
2013-01-06 16:23:08 +02:00
|
|
|
}
|
|
|
|
|
2014-05-07 15:03:43 +03:00
|
|
|
QPair<int, int> AndroidManager::apiLevelRange()
|
2013-08-14 13:39:45 +02:00
|
|
|
{
|
2015-06-11 12:35:23 +02:00
|
|
|
return qMakePair(9, 22);
|
2013-08-14 13:39:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
QString AndroidManager::androidNameForApiLevel(int x)
|
|
|
|
{
|
|
|
|
switch (x) {
|
|
|
|
case 4:
|
|
|
|
return QLatin1String("Android 1.6");
|
|
|
|
case 5:
|
|
|
|
return QLatin1String("Android 2.0");
|
|
|
|
case 6:
|
|
|
|
return QLatin1String("Android 2.0.1");
|
|
|
|
case 7:
|
|
|
|
return QLatin1String("Android 2.1.x");
|
|
|
|
case 8:
|
|
|
|
return QLatin1String("Android 2.2.x");
|
|
|
|
case 9:
|
|
|
|
return QLatin1String("Android 2.3, 2.3.1, 2.3.2");
|
|
|
|
case 10:
|
|
|
|
return QLatin1String("Android 2.3.3, 2.3.4");
|
|
|
|
case 11:
|
|
|
|
return QLatin1String("Android 3.0.x");
|
|
|
|
case 12:
|
|
|
|
return QLatin1String("Android 3.1.x");
|
|
|
|
case 13:
|
|
|
|
return QLatin1String("Android 3.2");
|
|
|
|
case 14:
|
|
|
|
return QLatin1String("Android 4.0, 4.0.1, 4.0.2");
|
|
|
|
case 15:
|
|
|
|
return QLatin1String("Android 4.0.3, 4.0.4");
|
|
|
|
case 16:
|
|
|
|
return QLatin1String("Android 4.1, 4.1.1");
|
|
|
|
case 17:
|
|
|
|
return QLatin1String("Android 4.2, 4.2.2");
|
|
|
|
case 18:
|
|
|
|
return QLatin1String("Android 4.3");
|
2013-11-12 12:14:33 +01:00
|
|
|
case 19:
|
|
|
|
return QLatin1String("Android 4.4");
|
2014-07-16 17:39:24 +02:00
|
|
|
case 20:
|
2014-11-25 11:37:09 +01:00
|
|
|
return QLatin1String("Android 4.4W");
|
2014-11-14 15:29:48 +02:00
|
|
|
case 21:
|
|
|
|
return QLatin1String("Android 5.0");
|
2015-05-20 15:10:50 +03:00
|
|
|
case 22:
|
|
|
|
return QLatin1String("Android 5.1");
|
2013-08-14 13:39:45 +02:00
|
|
|
default:
|
2014-07-16 17:36:21 +02:00
|
|
|
return tr("Unknown Android version. API Level: %1").arg(QString::number(x));
|
2013-08-14 13:39:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
QStringList AndroidManager::qtLibs(ProjectExplorer::Target *target)
|
2012-04-18 20:30:57 +03:00
|
|
|
{
|
2012-04-24 15:49:09 +02:00
|
|
|
return libsXml(target, QLatin1String("qt_libs"));
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
QStringList AndroidManager::prebundledLibs(ProjectExplorer::Target *target)
|
2012-04-18 20:30:57 +03:00
|
|
|
{
|
2012-04-24 15:49:09 +02:00
|
|
|
return libsXml(target, QLatin1String("bundled_libs"));
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
2014-07-22 13:45:41 +02:00
|
|
|
static bool openLibsXml(ProjectExplorer::Target *target, QDomDocument &doc)
|
2012-04-18 20:30:57 +03:00
|
|
|
{
|
2014-07-22 13:45:41 +02:00
|
|
|
return openXmlFile(doc, AndroidManager::libsPath(target));
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
2014-07-22 13:45:41 +02:00
|
|
|
static void raiseError(const QString &reason)
|
2012-04-18 20:30:57 +03:00
|
|
|
{
|
2014-07-22 13:45:41 +02:00
|
|
|
QMessageBox::critical(0, AndroidManager::tr("Error creating Android templates."), reason);
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
2014-07-22 13:45:41 +02:00
|
|
|
static QString loadLocal(ProjectExplorer::Target *target, int apiLevel, ItemType item, const QString &attribute)
|
2012-04-18 20:30:57 +03:00
|
|
|
{
|
2012-04-24 15:49:09 +02:00
|
|
|
QString itemType;
|
|
|
|
if (item == Lib)
|
|
|
|
itemType = QLatin1String("lib");
|
2013-04-19 12:27:58 +02:00
|
|
|
else if (item == BundledFile)
|
|
|
|
itemType = QLatin1String("bundled");
|
|
|
|
else // Jar or BundledJar
|
2012-04-24 15:49:09 +02:00
|
|
|
itemType = QLatin1String("jar");
|
|
|
|
|
|
|
|
QString localLibs;
|
2012-04-18 20:30:57 +03:00
|
|
|
|
2014-07-22 13:45:41 +02:00
|
|
|
QDir rulesFilesDir(AndroidManager::localLibsRulesFilePath(target).toString());
|
2013-02-15 16:07:54 +01:00
|
|
|
if (!rulesFilesDir.exists())
|
2012-04-24 15:49:09 +02:00
|
|
|
return localLibs;
|
|
|
|
|
|
|
|
QStringList libs;
|
2014-07-22 13:45:41 +02:00
|
|
|
libs << AndroidManager::qtLibs(target) << AndroidManager::prebundledLibs(target);
|
2013-02-15 16:07:54 +01:00
|
|
|
|
|
|
|
QFileInfoList rulesFiles = rulesFilesDir.entryInfoList(QStringList() << QLatin1String("*.xml"),
|
|
|
|
QDir::Files | QDir::Readable);
|
|
|
|
|
|
|
|
QStringList dependencyLibs;
|
|
|
|
QStringList replacedLibs;
|
|
|
|
foreach (QFileInfo rulesFile, rulesFiles) {
|
|
|
|
if (rulesFile.baseName() != QLatin1String("rules")
|
|
|
|
&& !rulesFile.baseName().endsWith(QLatin1String("-android-dependencies"))) {
|
|
|
|
continue;
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
2013-02-15 16:07:54 +01:00
|
|
|
QDomDocument doc;
|
|
|
|
if (!openXmlFile(doc, Utils::FileName::fromString(rulesFile.absoluteFilePath())))
|
|
|
|
return localLibs;
|
|
|
|
|
|
|
|
QDomElement element = doc.documentElement().firstChildElement(QLatin1String("platforms")).firstChildElement(itemType + QLatin1Char('s')).firstChildElement(QLatin1String("version"));
|
|
|
|
while (!element.isNull()) {
|
|
|
|
if (element.attribute(QLatin1String("value")).toInt() == apiLevel) {
|
|
|
|
if (element.hasAttribute(QLatin1String("symlink")))
|
|
|
|
apiLevel = element.attribute(QLatin1String("symlink")).toInt();
|
|
|
|
break;
|
2012-04-24 15:49:09 +02:00
|
|
|
}
|
2013-02-15 16:07:54 +01:00
|
|
|
element = element.nextSiblingElement(QLatin1String("version"));
|
|
|
|
}
|
|
|
|
|
|
|
|
element = doc.documentElement().firstChildElement(QLatin1String("dependencies")).firstChildElement(QLatin1String("lib"));
|
|
|
|
while (!element.isNull()) {
|
|
|
|
if (libs.contains(element.attribute(QLatin1String("name")))) {
|
|
|
|
QDomElement libElement = element.firstChildElement(QLatin1String("depends")).firstChildElement(itemType);
|
|
|
|
while (!libElement.isNull()) {
|
2013-04-19 12:27:58 +02:00
|
|
|
if (libElement.attribute(QLatin1String("bundling")).toInt() == (item == BundledJar ? 1 : 0)) {
|
|
|
|
if (libElement.hasAttribute(attribute)) {
|
2013-09-06 15:14:11 +02:00
|
|
|
QString dependencyLib = libElement.attribute(attribute);
|
|
|
|
if (dependencyLib.contains(QLatin1String("%1")))
|
|
|
|
dependencyLib = dependencyLib.arg(apiLevel);
|
2013-05-16 03:58:26 +02:00
|
|
|
if (libElement.hasAttribute(QLatin1String("extends"))) {
|
|
|
|
const QString extends = libElement.attribute(QLatin1String("extends"));
|
2013-11-11 22:20:47 +02:00
|
|
|
if (libs.contains(extends))
|
2013-05-16 03:58:26 +02:00
|
|
|
dependencyLibs << dependencyLib;
|
|
|
|
} else if (!dependencyLibs.contains(dependencyLib)) {
|
2013-04-19 12:27:58 +02:00
|
|
|
dependencyLibs << dependencyLib;
|
2013-05-16 03:58:26 +02:00
|
|
|
}
|
2013-04-19 12:27:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (libElement.hasAttribute(QLatin1String("replaces"))) {
|
2013-09-06 15:14:11 +02:00
|
|
|
QString replacedLib = libElement.attribute(QLatin1String("replaces"));
|
|
|
|
if (replacedLib.contains(QLatin1String("%1")))
|
|
|
|
replacedLib = replacedLib.arg(apiLevel);
|
2013-04-19 12:27:58 +02:00
|
|
|
if (!replacedLibs.contains(replacedLib))
|
|
|
|
replacedLibs << replacedLib;
|
|
|
|
}
|
2013-02-15 16:07:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
libElement = libElement.nextSiblingElement(itemType);
|
|
|
|
}
|
|
|
|
|
|
|
|
libElement = element.firstChildElement(QLatin1String("replaces")).firstChildElement(itemType);
|
|
|
|
while (!libElement.isNull()) {
|
|
|
|
if (libElement.hasAttribute(attribute)) {
|
|
|
|
QString replacedLib = libElement.attribute(attribute).arg(apiLevel);
|
|
|
|
if (!replacedLibs.contains(replacedLib))
|
|
|
|
replacedLibs << replacedLib;
|
|
|
|
}
|
2012-04-24 15:49:09 +02:00
|
|
|
|
2013-02-15 16:07:54 +01:00
|
|
|
libElement = libElement.nextSiblingElement(itemType);
|
|
|
|
}
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
2013-02-15 16:07:54 +01:00
|
|
|
element = element.nextSiblingElement(QLatin1String("lib"));
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
}
|
2013-02-15 16:07:54 +01:00
|
|
|
|
|
|
|
// The next loop requires all library names to end with a ":" so we append one
|
|
|
|
// to the end after joining.
|
2014-08-23 01:19:53 +02:00
|
|
|
localLibs = dependencyLibs.join(QLatin1Char(':')) + QLatin1Char(':');
|
2013-02-15 16:07:54 +01:00
|
|
|
foreach (QString replacedLib, replacedLibs)
|
|
|
|
localLibs.remove(replacedLib + QLatin1Char(':'));
|
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
return localLibs;
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
2014-07-22 13:45:41 +02:00
|
|
|
static bool openXmlFile(QDomDocument &doc, const Utils::FileName &fileName)
|
2012-04-18 20:30:57 +03:00
|
|
|
{
|
2012-04-24 15:49:09 +02:00
|
|
|
QFile f(fileName.toString());
|
|
|
|
if (!f.open(QIODevice::ReadOnly))
|
2012-04-18 20:30:57 +03:00
|
|
|
return false;
|
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
if (!doc.setContent(f.readAll())) {
|
2014-07-22 13:45:41 +02:00
|
|
|
raiseError(AndroidManager::tr("Cannot parse \"%1\".").arg(fileName.toUserOutput()));
|
2012-04-18 20:30:57 +03:00
|
|
|
return false;
|
|
|
|
}
|
2012-04-24 15:49:09 +02:00
|
|
|
return true;
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
2014-07-22 13:45:41 +02:00
|
|
|
static bool openManifest(ProjectExplorer::Target *target, QDomDocument &doc)
|
2012-04-18 20:30:57 +03:00
|
|
|
{
|
2014-07-22 13:45:41 +02:00
|
|
|
return openXmlFile(doc, AndroidManager::manifestPath(target));
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
2014-07-22 13:45:41 +02:00
|
|
|
static QStringList libsXml(ProjectExplorer::Target *target, const QString &tag)
|
2012-04-18 20:30:57 +03:00
|
|
|
{
|
|
|
|
QStringList libs;
|
|
|
|
QDomDocument doc;
|
2012-04-24 15:49:09 +02:00
|
|
|
if (!openLibsXml(target, doc))
|
2012-04-18 20:30:57 +03:00
|
|
|
return libs;
|
|
|
|
QDomElement arrayElem = doc.documentElement().firstChildElement(QLatin1String("array"));
|
|
|
|
while (!arrayElem.isNull()) {
|
|
|
|
if (arrayElem.attribute(QLatin1String("name")) == tag) {
|
|
|
|
arrayElem = arrayElem.firstChildElement(QLatin1String("item"));
|
|
|
|
while (!arrayElem.isNull()) {
|
|
|
|
libs << arrayElem.text();
|
|
|
|
arrayElem = arrayElem.nextSiblingElement(QLatin1String("item"));
|
|
|
|
}
|
|
|
|
return libs;
|
|
|
|
}
|
|
|
|
arrayElem = arrayElem.nextSiblingElement(QLatin1String("array"));
|
|
|
|
}
|
|
|
|
return libs;
|
|
|
|
}
|
|
|
|
|
2013-09-17 18:24:57 +02:00
|
|
|
void AndroidManager::cleanLibsOnDevice(ProjectExplorer::Target *target)
|
|
|
|
{
|
|
|
|
const QString targetArch = AndroidManager::targetArch(target);
|
2013-10-09 16:24:25 +02:00
|
|
|
if (targetArch.isEmpty())
|
|
|
|
return;
|
2015-06-10 10:34:03 +02:00
|
|
|
const int deviceAPILevel = AndroidManager::minimumSDK(target);
|
2014-11-17 16:22:28 +01:00
|
|
|
AndroidDeviceInfo info = AndroidConfigurations::showDeviceDialog(target->project(), deviceAPILevel, targetArch, AndroidConfigurations::None);
|
2015-04-23 16:25:44 +02:00
|
|
|
if (info.serialNumber.isEmpty() && info.avdname.isEmpty()) // aborted
|
2013-09-17 18:24:57 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
QString deviceSerialNumber = info.serialNumber;
|
|
|
|
|
|
|
|
if (info.type == AndroidDeviceInfo::Emulator) {
|
2015-04-23 16:25:44 +02:00
|
|
|
deviceSerialNumber = AndroidConfigurations::currentConfig().startAVD(info.avdname);
|
2013-09-17 18:24:57 +02:00
|
|
|
if (deviceSerialNumber.isEmpty())
|
2013-10-09 16:37:42 +02:00
|
|
|
Core::MessageManager::write(tr("Starting Android virtual device failed."));
|
2013-09-17 18:24:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
QProcess *process = new QProcess();
|
|
|
|
QStringList arguments = AndroidDeviceInfo::adbSelector(deviceSerialNumber);
|
|
|
|
arguments << QLatin1String("shell") << QLatin1String("rm") << QLatin1String("-r") << QLatin1String("/data/local/tmp/qt");
|
|
|
|
process->connect(process, SIGNAL(finished(int)), process, SLOT(deleteLater()));
|
2013-12-16 20:19:07 +01:00
|
|
|
const QString adb = AndroidConfigurations::currentConfig().adbToolPath().toString();
|
2014-08-23 01:19:53 +02:00
|
|
|
Core::MessageManager::write(adb + QLatin1Char(' ') + arguments.join(QLatin1Char(' ')));
|
2013-09-17 18:24:57 +02:00
|
|
|
process->start(adb, arguments);
|
|
|
|
if (!process->waitForStarted(500))
|
|
|
|
delete process;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AndroidManager::installQASIPackage(ProjectExplorer::Target *target, const QString &packagePath)
|
|
|
|
{
|
|
|
|
const QString targetArch = AndroidManager::targetArch(target);
|
2013-10-09 16:24:25 +02:00
|
|
|
if (targetArch.isEmpty())
|
|
|
|
return;
|
2015-06-10 10:34:03 +02:00
|
|
|
const int deviceAPILevel = AndroidManager::minimumSDK(target);
|
2014-11-17 16:22:28 +01:00
|
|
|
AndroidDeviceInfo info = AndroidConfigurations::showDeviceDialog(target->project(), deviceAPILevel, targetArch, AndroidConfigurations::None);
|
2015-04-23 16:25:44 +02:00
|
|
|
if (info.serialNumber.isEmpty() && info.avdname.isEmpty()) // aborted
|
2013-09-17 18:24:57 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
QString deviceSerialNumber = info.serialNumber;
|
|
|
|
if (info.type == AndroidDeviceInfo::Emulator) {
|
2015-04-23 16:25:44 +02:00
|
|
|
deviceSerialNumber = AndroidConfigurations::currentConfig().startAVD(info.avdname);
|
2013-09-17 18:24:57 +02:00
|
|
|
if (deviceSerialNumber.isEmpty())
|
2013-10-09 16:37:42 +02:00
|
|
|
Core::MessageManager::write(tr("Starting Android virtual device failed."));
|
2013-09-17 18:24:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
QProcess *process = new QProcess();
|
|
|
|
QStringList arguments = AndroidDeviceInfo::adbSelector(deviceSerialNumber);
|
|
|
|
arguments << QLatin1String("install") << QLatin1String("-r ") << packagePath;
|
|
|
|
|
|
|
|
process->connect(process, SIGNAL(finished(int)), process, SLOT(deleteLater()));
|
2013-12-16 20:19:07 +01:00
|
|
|
const QString adb = AndroidConfigurations::currentConfig().adbToolPath().toString();
|
2014-08-23 01:19:53 +02:00
|
|
|
Core::MessageManager::write(adb + QLatin1Char(' ') + arguments.join(QLatin1Char(' ')));
|
2013-09-17 18:24:57 +02:00
|
|
|
process->start(adb, arguments);
|
|
|
|
if (!process->waitForFinished(500))
|
|
|
|
delete process;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AndroidManager::checkKeystorePassword(const QString &keystorePath, const QString &keystorePasswd)
|
|
|
|
{
|
|
|
|
if (keystorePasswd.isEmpty())
|
|
|
|
return false;
|
|
|
|
QStringList arguments;
|
|
|
|
arguments << QLatin1String("-list")
|
|
|
|
<< QLatin1String("-keystore")
|
|
|
|
<< keystorePath
|
|
|
|
<< QLatin1String("--storepass")
|
|
|
|
<< keystorePasswd;
|
|
|
|
QProcess proc;
|
2013-12-16 20:19:07 +01:00
|
|
|
proc.start(AndroidConfigurations::currentConfig().keytoolPath().toString(), arguments);
|
2015-04-29 12:41:55 +02:00
|
|
|
if (!proc.waitForStarted(10000))
|
2013-09-17 18:24:57 +02:00
|
|
|
return false;
|
2015-04-29 12:41:55 +02:00
|
|
|
if (!proc.waitForFinished(10000)) {
|
2013-09-17 18:24:57 +02:00
|
|
|
proc.kill();
|
|
|
|
proc.waitForFinished();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return proc.exitCode() == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AndroidManager::checkCertificatePassword(const QString &keystorePath, const QString &keystorePasswd, const QString &alias, const QString &certificatePasswd)
|
|
|
|
{
|
|
|
|
// assumes that the keystore password is correct
|
|
|
|
QStringList arguments;
|
|
|
|
arguments << QLatin1String("-certreq")
|
|
|
|
<< QLatin1String("-keystore")
|
|
|
|
<< keystorePath
|
|
|
|
<< QLatin1String("--storepass")
|
|
|
|
<< keystorePasswd
|
|
|
|
<< QLatin1String("-alias")
|
|
|
|
<< alias
|
|
|
|
<< QLatin1String("-keypass");
|
|
|
|
if (certificatePasswd.isEmpty())
|
|
|
|
arguments << keystorePasswd;
|
|
|
|
else
|
|
|
|
arguments << certificatePasswd;
|
|
|
|
|
|
|
|
QProcess proc;
|
2013-12-16 20:19:07 +01:00
|
|
|
proc.start(AndroidConfigurations::currentConfig().keytoolPath().toString(), arguments);
|
2015-04-29 12:41:55 +02:00
|
|
|
if (!proc.waitForStarted(10000))
|
2013-09-17 18:24:57 +02:00
|
|
|
return false;
|
2015-04-29 12:41:55 +02:00
|
|
|
if (!proc.waitForFinished(10000)) {
|
2013-09-17 18:24:57 +02:00
|
|
|
proc.kill();
|
|
|
|
proc.waitForFinished();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return proc.exitCode() == 0;
|
|
|
|
}
|
|
|
|
|
2014-06-24 16:47:10 +02:00
|
|
|
bool AndroidManager::checkForQt51Files(Utils::FileName fileName)
|
2013-09-17 18:24:57 +02:00
|
|
|
{
|
|
|
|
fileName.appendPath(QLatin1String("android")).appendPath(QLatin1String("version.xml"));
|
2014-10-24 13:15:54 +02:00
|
|
|
if (!fileName.exists())
|
2013-09-17 18:24:57 +02:00
|
|
|
return false;
|
|
|
|
QDomDocument dstVersionDoc;
|
2014-07-22 13:45:41 +02:00
|
|
|
if (!openXmlFile(dstVersionDoc, fileName))
|
2013-09-17 18:24:57 +02:00
|
|
|
return false;
|
|
|
|
return dstVersionDoc.documentElement().attribute(QLatin1String("value")).toDouble() < 5.2;
|
|
|
|
}
|
|
|
|
|
2014-06-24 16:47:38 +02:00
|
|
|
AndroidQtSupport *AndroidManager::androidQtSupport(ProjectExplorer::Target *target)
|
|
|
|
{
|
|
|
|
QList<AndroidQtSupport *> providerList = ExtensionSystem::PluginManager::getObjects<AndroidQtSupport>();
|
|
|
|
foreach (AndroidQtSupport *provider, providerList) {
|
|
|
|
if (provider->canHandle(target))
|
|
|
|
return provider;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-09-22 16:20:51 +03:00
|
|
|
bool AndroidManager::useGradle(ProjectExplorer::Target *target)
|
|
|
|
{
|
|
|
|
if (!target)
|
|
|
|
return false;
|
|
|
|
AndroidBuildApkStep *buildApkStep
|
|
|
|
= AndroidGlobal::buildStep<AndroidBuildApkStep>(target->activeBuildConfiguration());
|
|
|
|
return buildApkStep && buildApkStep->useGradle();
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef QMap<QByteArray, QByteArray> GradleProperties;
|
|
|
|
|
|
|
|
static GradleProperties readGradleProperties(const QString &path)
|
|
|
|
{
|
|
|
|
GradleProperties properties;
|
|
|
|
QFile file(path);
|
|
|
|
if (!file.open(QIODevice::ReadOnly))
|
|
|
|
return properties;
|
|
|
|
|
|
|
|
foreach (const QByteArray &line, file.readAll().split('\n')) {
|
|
|
|
if (line.trimmed().startsWith('#'))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
QList<QByteArray> prop(line.split('='));
|
|
|
|
if (prop.size() > 1)
|
|
|
|
properties[prop.at(0).trimmed()] = prop.at(1).trimmed();
|
|
|
|
}
|
|
|
|
file.close();
|
|
|
|
return properties;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool mergeGradleProperties(const QString &path, GradleProperties properties)
|
|
|
|
{
|
|
|
|
QFile::remove(path + QLatin1Char('~'));
|
|
|
|
QFile::rename(path, path + QLatin1Char('~'));
|
|
|
|
QFile file(path);
|
|
|
|
if (!file.open(QIODevice::Truncate | QIODevice::WriteOnly | QIODevice::Text))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
QFile oldFile(path + QLatin1Char('~'));
|
|
|
|
if (oldFile.open(QIODevice::ReadOnly)) {
|
|
|
|
while (!oldFile.atEnd()) {
|
|
|
|
QByteArray line(oldFile.readLine());
|
|
|
|
QList<QByteArray> prop(line.split('='));
|
|
|
|
if (prop.size() > 1) {
|
|
|
|
GradleProperties::iterator it = properties.find(prop.at(0).trimmed());
|
|
|
|
if (it != properties.end()) {
|
|
|
|
file.write(it.key() + '=' + it.value() + '\n');
|
|
|
|
properties.erase(it);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file.write(line);
|
|
|
|
}
|
|
|
|
oldFile.close();
|
|
|
|
} else {
|
|
|
|
file.write("## This file is automatically generated by QtCreator.\n"
|
|
|
|
"#\n"
|
|
|
|
"# This file must *NOT* be checked into Version Control Systems,\n"
|
|
|
|
"# as it contains information specific to your local configuration.\n\n");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-04-01 11:19:32 +02:00
|
|
|
for (GradleProperties::const_iterator it = properties.constBegin(); it != properties.constEnd();
|
|
|
|
++it)
|
2014-09-22 16:20:51 +03:00
|
|
|
file.write(it.key() + '=' + it.value() + '\n');
|
|
|
|
|
|
|
|
file.close();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool AndroidManager::updateGradleProperties(ProjectExplorer::Target *target)
|
|
|
|
{
|
|
|
|
QtSupport::BaseQtVersion *version = QtSupport::QtKitInformation::qtVersion(target->kit());
|
|
|
|
if (!version)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
AndroidBuildApkStep *buildApkStep
|
|
|
|
= AndroidGlobal::buildStep<AndroidBuildApkStep>(target->activeBuildConfiguration());
|
|
|
|
|
2014-10-24 13:15:54 +02:00
|
|
|
if (!buildApkStep || !buildApkStep->androidPackageSourceDir().appendPath(QLatin1String("gradlew")).exists())
|
2014-09-22 16:20:51 +03:00
|
|
|
return false;
|
|
|
|
|
|
|
|
GradleProperties localProperties;
|
|
|
|
localProperties["sdk.dir"] = AndroidConfigurations::currentConfig().sdkLocation().toString().toLocal8Bit();
|
|
|
|
if (!mergeGradleProperties(buildApkStep->androidPackageSourceDir().appendPath(QLatin1String("local.properties")).toString(), localProperties))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
QString gradlePropertiesPath = buildApkStep->androidPackageSourceDir().appendPath(QLatin1String("gradle.properties")).toString();
|
|
|
|
GradleProperties gradleProperties = readGradleProperties(gradlePropertiesPath);
|
|
|
|
gradleProperties["qt5AndroidDir"] = version->qmakeProperty("QT_INSTALL_PREFIX")
|
|
|
|
.append(QLatin1String("/src/android/java")).toLocal8Bit();
|
|
|
|
gradleProperties["buildDir"] = ".build";
|
|
|
|
gradleProperties["androidCompileSdkVersion"] = buildTargetSDK(target).split(QLatin1Char('-')).last().toLocal8Bit();
|
|
|
|
if (gradleProperties["androidBuildToolsVersion"].isEmpty()) {
|
|
|
|
QString maxVersion;
|
|
|
|
QDir buildToolsDir(AndroidConfigurations::currentConfig().sdkLocation().appendPath(QLatin1String("build-tools")).toString());
|
|
|
|
foreach (const QFileInfo &file, buildToolsDir.entryList(QDir::Dirs|QDir::NoDotAndDotDot)) {
|
|
|
|
QString ver(file.fileName());
|
|
|
|
if (maxVersion < ver)
|
|
|
|
maxVersion = ver;
|
|
|
|
}
|
|
|
|
if (maxVersion.isEmpty())
|
|
|
|
return false;
|
|
|
|
gradleProperties["androidBuildToolsVersion"] = maxVersion.toLocal8Bit();
|
|
|
|
}
|
|
|
|
return mergeGradleProperties(gradlePropertiesPath, gradleProperties);
|
|
|
|
}
|
|
|
|
|
2013-10-16 11:02:37 +02:00
|
|
|
} // namespace Android
|