2016-01-15 14:57:40 +01:00
|
|
|
/****************************************************************************
|
2012-04-18 20:30:57 +03:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 BogDan Vatra <bog_dan_ro@yahoo.com>
|
|
|
|
|
** Contact: https://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
|
2016-01-15 14:57:40 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2012-04-18 20:30:57 +03:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2012-04-18 20:30:57 +03:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2012-04-18 20:30:57 +03:00
|
|
|
|
|
|
|
|
#include "androidsettingswidget.h"
|
|
|
|
|
|
|
|
|
|
#include "ui_androidsettingswidget.h"
|
|
|
|
|
|
|
|
|
|
#include "androidconfigurations.h"
|
|
|
|
|
#include "androidconstants.h"
|
2019-12-23 16:13:23 +02:00
|
|
|
#include "androidsdkdownloader.h"
|
2020-05-20 12:51:21 +02:00
|
|
|
#include "androidsdkmanager.h"
|
2017-09-18 13:48:00 +02:00
|
|
|
#include "androidsdkmanagerwidget.h"
|
2020-05-20 12:51:21 +02:00
|
|
|
#include "androidtoolchain.h"
|
|
|
|
|
|
|
|
|
|
#include <projectexplorer/projectexplorerconstants.h>
|
2012-04-18 20:30:57 +03:00
|
|
|
|
2013-11-19 17:25:32 +01:00
|
|
|
#include <utils/environment.h>
|
2012-08-23 15:53:58 +02:00
|
|
|
#include <utils/hostosinfo.h>
|
2019-12-12 23:15:48 +01:00
|
|
|
#include <utils/infolabel.h>
|
2020-05-20 06:35:10 +02:00
|
|
|
#include <utils/listmodel.h>
|
2014-03-03 12:05:01 +01:00
|
|
|
#include <utils/pathchooser.h>
|
2020-05-20 12:51:21 +02:00
|
|
|
#include <utils/qtcassert.h>
|
2020-02-28 19:27:03 +02:00
|
|
|
#include <utils/qtcprocess.h>
|
2016-08-03 17:55:54 +02:00
|
|
|
#include <utils/utilsicons.h>
|
2012-08-23 15:53:58 +02:00
|
|
|
|
2014-02-18 20:20:32 +01:00
|
|
|
#include <QDesktopServices>
|
2019-12-23 16:13:23 +02:00
|
|
|
#include <QDir>
|
2020-03-11 18:49:02 +02:00
|
|
|
#include <QFileDialog>
|
2020-01-10 12:53:28 +01:00
|
|
|
#include <QFutureWatcher>
|
2020-10-06 18:49:15 +02:00
|
|
|
#include <QInputDialog>
|
2020-01-10 12:53:28 +01:00
|
|
|
#include <QList>
|
2020-04-17 14:23:21 +03:00
|
|
|
#include <QLoggingCategory>
|
2012-04-18 20:30:57 +03:00
|
|
|
#include <QMessageBox>
|
|
|
|
|
#include <QModelIndex>
|
2020-07-22 17:46:58 +02:00
|
|
|
#include <QScrollArea>
|
2020-01-13 15:18:35 +02:00
|
|
|
#include <QSettings>
|
2020-07-16 08:17:01 +02:00
|
|
|
#include <QStandardPaths>
|
2020-01-10 12:53:28 +01:00
|
|
|
#include <QString>
|
|
|
|
|
#include <QTimer>
|
|
|
|
|
#include <QUrl>
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
|
|
#include <memory>
|
2012-04-18 20:30:57 +03:00
|
|
|
|
2020-05-20 06:35:10 +02:00
|
|
|
using namespace Utils;
|
|
|
|
|
|
2020-04-17 14:23:21 +03:00
|
|
|
namespace {
|
|
|
|
|
static Q_LOGGING_CATEGORY(androidsettingswidget, "qtc.android.androidsettingswidget", QtWarningMsg);
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-18 20:30:57 +03:00
|
|
|
namespace Android {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2020-01-10 12:53:28 +01:00
|
|
|
class AndroidSdkManagerWidget;
|
2020-05-20 12:51:21 +02:00
|
|
|
class SummaryWidget;
|
2020-01-10 12:53:28 +01:00
|
|
|
|
|
|
|
|
class AndroidSettingsWidget final : public Core::IOptionsPageWidget
|
|
|
|
|
{
|
|
|
|
|
Q_DECLARE_TR_FUNCTIONS(Android::Internal::AndroidSettingsWidget)
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
// Todo: This would be so much simpler if it just used Utils::PathChooser!!!
|
|
|
|
|
AndroidSettingsWidget();
|
|
|
|
|
~AndroidSettingsWidget() final;
|
|
|
|
|
|
|
|
|
|
private:
|
2020-01-15 13:27:27 +01:00
|
|
|
void apply() final { AndroidConfigurations::setConfig(m_androidConfig); }
|
2020-01-10 12:53:28 +01:00
|
|
|
|
2020-05-18 18:58:32 +03:00
|
|
|
void showEvent(QShowEvent *event) override;
|
|
|
|
|
|
2020-01-10 12:53:28 +01:00
|
|
|
void validateJdk();
|
2019-12-23 16:13:23 +02:00
|
|
|
void updateNdkList();
|
2020-01-10 12:53:28 +01:00
|
|
|
void onSdkPathChanged();
|
|
|
|
|
void validateSdk();
|
|
|
|
|
void openSDKDownloadUrl();
|
|
|
|
|
void openNDKDownloadUrl();
|
|
|
|
|
void openOpenJDKDownloadUrl();
|
2020-02-28 19:27:03 +02:00
|
|
|
void downloadOpenSslRepo(const bool silent = false);
|
2020-01-10 12:53:28 +01:00
|
|
|
void createKitToggled();
|
|
|
|
|
|
|
|
|
|
void updateUI();
|
|
|
|
|
|
2019-12-23 16:13:23 +02:00
|
|
|
void downloadSdk();
|
2020-02-24 11:19:02 +02:00
|
|
|
void addCustomNdkItem();
|
2020-02-28 19:27:03 +02:00
|
|
|
void validateOpenSsl();
|
2019-12-23 16:13:23 +02:00
|
|
|
|
2020-05-20 09:54:50 +02:00
|
|
|
Ui_AndroidSettingsWidget m_ui;
|
2020-01-10 12:53:28 +01:00
|
|
|
AndroidSdkManagerWidget *m_sdkManagerWidget = nullptr;
|
2021-10-25 15:58:02 +03:00
|
|
|
AndroidConfig &m_androidConfig{AndroidConfigurations::currentConfig()};
|
2020-01-10 12:53:28 +01:00
|
|
|
|
2020-06-16 13:05:27 +03:00
|
|
|
AndroidSdkManager m_sdkManager{m_androidConfig};
|
2020-05-20 09:54:50 +02:00
|
|
|
AndroidSdkDownloader m_sdkDownloader;
|
2020-02-10 20:25:24 +02:00
|
|
|
bool m_isInitialReloadDone = false;
|
2020-05-20 12:51:21 +02:00
|
|
|
|
|
|
|
|
SummaryWidget *m_androidSummary = nullptr;
|
|
|
|
|
SummaryWidget *m_javaSummary = nullptr;
|
|
|
|
|
SummaryWidget *m_openSslSummary = nullptr;
|
2020-01-10 12:53:28 +01:00
|
|
|
};
|
|
|
|
|
|
2017-09-14 13:29:46 +02:00
|
|
|
enum JavaValidation {
|
|
|
|
|
JavaPathExistsRow,
|
2020-06-26 00:33:43 +03:00
|
|
|
JavaJdkValidRow
|
2017-09-14 13:29:46 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
enum AndroidValidation {
|
|
|
|
|
SdkPathExistsRow,
|
2019-08-12 01:41:41 +02:00
|
|
|
SdkPathWritableRow,
|
2017-09-14 13:29:46 +02:00
|
|
|
SdkToolsInstalledRow,
|
|
|
|
|
PlatformToolsInstalledRow,
|
|
|
|
|
BuildToolsInstalledRow,
|
2019-08-05 14:46:01 +02:00
|
|
|
SdkManagerSuccessfulRow,
|
2017-09-14 13:29:46 +02:00
|
|
|
PlatformSdkInstalledRow,
|
2019-12-23 16:13:23 +02:00
|
|
|
AllEssentialsInstalledRow,
|
2017-09-14 13:29:46 +02:00
|
|
|
};
|
|
|
|
|
|
2020-02-28 19:27:03 +02:00
|
|
|
enum OpenSslValidation {
|
|
|
|
|
OpenSslPathExistsRow,
|
|
|
|
|
OpenSslPriPathExists,
|
|
|
|
|
OpenSslCmakeListsPathExists
|
|
|
|
|
};
|
|
|
|
|
|
2017-09-14 13:29:46 +02:00
|
|
|
class SummaryWidget : public QWidget
|
|
|
|
|
{
|
|
|
|
|
class RowData {
|
|
|
|
|
public:
|
2020-05-20 09:54:50 +02:00
|
|
|
InfoLabel *m_infoLabel = nullptr;
|
2017-09-14 13:29:46 +02:00
|
|
|
bool m_valid = false;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
SummaryWidget(const QMap<int, QString> &validationPoints, const QString &validText,
|
2020-05-20 09:54:50 +02:00
|
|
|
const QString &invalidText, DetailsWidget *detailsWidget) :
|
2017-09-14 13:29:46 +02:00
|
|
|
QWidget(detailsWidget),
|
|
|
|
|
m_validText(validText),
|
|
|
|
|
m_invalidText(invalidText),
|
|
|
|
|
m_detailsWidget(detailsWidget)
|
|
|
|
|
{
|
|
|
|
|
QTC_CHECK(m_detailsWidget);
|
2019-12-12 23:15:48 +01:00
|
|
|
auto layout = new QVBoxLayout(this);
|
2020-07-02 11:35:07 +02:00
|
|
|
layout->setContentsMargins(22, 0, 0, 12);
|
|
|
|
|
layout->setSpacing(4);
|
2017-09-14 13:29:46 +02:00
|
|
|
for (auto itr = validationPoints.cbegin(); itr != validationPoints.cend(); ++itr) {
|
|
|
|
|
RowData data;
|
2020-05-20 09:54:50 +02:00
|
|
|
data.m_infoLabel = new InfoLabel(itr.value());
|
2019-12-12 23:15:48 +01:00
|
|
|
layout->addWidget(data.m_infoLabel);
|
2017-09-14 13:29:46 +02:00
|
|
|
m_validationData[itr.key()] = data;
|
2020-07-02 14:01:47 +03:00
|
|
|
setPointValid(itr.key(), false);
|
2017-09-14 13:29:46 +02:00
|
|
|
}
|
2020-05-20 12:51:21 +02:00
|
|
|
m_detailsWidget->setWidget(this);
|
2020-07-02 11:35:07 +02:00
|
|
|
setContentsMargins(0, 0, 0, 0);
|
2017-09-14 13:29:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void setPointValid(int key, bool valid)
|
|
|
|
|
{
|
|
|
|
|
if (!m_validationData.contains(key))
|
|
|
|
|
return;
|
2020-05-20 12:51:21 +02:00
|
|
|
RowData &data = m_validationData[key];
|
2017-09-14 13:29:46 +02:00
|
|
|
data.m_valid = valid;
|
2020-05-20 09:54:50 +02:00
|
|
|
data.m_infoLabel->setType(valid ? InfoLabel::Ok : InfoLabel::NotOk);
|
2017-09-18 13:48:00 +02:00
|
|
|
updateUi();
|
2017-09-14 13:29:46 +02:00
|
|
|
}
|
|
|
|
|
|
2020-05-20 12:51:21 +02:00
|
|
|
bool rowsOk(const QList<int> &keys) const
|
2017-09-14 13:29:46 +02:00
|
|
|
{
|
2017-09-18 13:48:00 +02:00
|
|
|
for (auto key : keys) {
|
|
|
|
|
if (!m_validationData[key].m_valid)
|
2017-09-14 13:29:46 +02:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-20 12:51:21 +02:00
|
|
|
bool allRowsOk() const
|
|
|
|
|
{
|
|
|
|
|
return rowsOk(m_validationData.keys());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void setInfoText(const QString &text)
|
|
|
|
|
{
|
2017-09-18 13:48:00 +02:00
|
|
|
m_infoText = text;
|
|
|
|
|
updateUi();
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-20 12:51:21 +02:00
|
|
|
void setSetupOk(bool ok)
|
|
|
|
|
{
|
|
|
|
|
m_detailsWidget->setState(ok ? DetailsWidget::Collapsed : DetailsWidget::Expanded);
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-14 13:29:46 +02:00
|
|
|
private:
|
2017-09-18 13:48:00 +02:00
|
|
|
void updateUi() {
|
|
|
|
|
bool ok = allRowsOk();
|
2020-05-20 09:54:50 +02:00
|
|
|
m_detailsWidget->setIcon(ok ? Icons::OK.icon() : Icons::CRITICAL.icon());
|
2017-09-18 13:48:00 +02:00
|
|
|
m_detailsWidget->setSummaryText(ok ? QString("%1 %2").arg(m_validText).arg(m_infoText)
|
|
|
|
|
: m_invalidText);
|
|
|
|
|
}
|
2017-09-14 13:29:46 +02:00
|
|
|
QString m_validText;
|
|
|
|
|
QString m_invalidText;
|
2017-09-18 13:48:00 +02:00
|
|
|
QString m_infoText;
|
2020-05-20 09:54:50 +02:00
|
|
|
DetailsWidget *m_detailsWidget = nullptr;
|
2017-09-14 13:29:46 +02:00
|
|
|
QMap<int, RowData> m_validationData;
|
|
|
|
|
};
|
|
|
|
|
|
2020-02-10 20:25:24 +02:00
|
|
|
void AndroidSettingsWidget::showEvent(QShowEvent *event)
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(event)
|
|
|
|
|
if (!m_isInitialReloadDone) {
|
2020-06-26 00:34:51 +03:00
|
|
|
validateJdk();
|
2020-02-10 20:25:24 +02:00
|
|
|
// Reloading SDK packages (force) is still synchronous. Use zero timer
|
|
|
|
|
// to let settings dialog open first.
|
2021-05-28 18:22:44 +03:00
|
|
|
QTimer::singleShot(0, &m_sdkManager, std::bind(&AndroidSdkManager::reloadPackages,
|
|
|
|
|
&m_sdkManager, false));
|
2020-02-28 19:27:03 +02:00
|
|
|
validateOpenSsl();
|
2020-02-10 20:25:24 +02:00
|
|
|
m_isInitialReloadDone = true;
|
|
|
|
|
}
|
2019-12-23 16:13:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AndroidSettingsWidget::updateNdkList()
|
|
|
|
|
{
|
2020-05-20 09:54:50 +02:00
|
|
|
m_ui.ndkListWidget->clear();
|
2021-05-28 18:22:44 +03:00
|
|
|
const auto installedPkgs = m_sdkManager.installedNdkPackages();
|
|
|
|
|
for (const Ndk *ndk : installedPkgs) {
|
2020-05-20 09:54:50 +02:00
|
|
|
m_ui.ndkListWidget->addItem(new QListWidgetItem(Icons::LOCKED.icon(),
|
2021-09-27 23:21:19 +02:00
|
|
|
ndk->installedLocation().toUserOutput()));
|
2020-03-11 18:49:02 +02:00
|
|
|
}
|
2020-02-24 11:19:02 +02:00
|
|
|
|
2021-05-28 18:22:44 +03:00
|
|
|
const auto customNdks = m_androidConfig.getCustomNdkList();
|
|
|
|
|
for (const QString &ndk : customNdks) {
|
2020-03-11 18:49:02 +02:00
|
|
|
if (m_androidConfig.isValidNdk(ndk)) {
|
2020-05-20 09:54:50 +02:00
|
|
|
m_ui.ndkListWidget->addItem(new QListWidgetItem(Icons::UNLOCKED.icon(), ndk));
|
2020-03-11 18:49:02 +02:00
|
|
|
} else {
|
2020-02-24 11:19:02 +02:00
|
|
|
m_androidConfig.removeCustomNdk(ndk);
|
2020-03-11 18:49:02 +02:00
|
|
|
}
|
2020-02-24 11:19:02 +02:00
|
|
|
}
|
2020-03-11 18:49:02 +02:00
|
|
|
|
2020-05-20 09:54:50 +02:00
|
|
|
m_ui.ndkListWidget->setCurrentRow(0);
|
2020-02-24 11:19:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AndroidSettingsWidget::addCustomNdkItem()
|
|
|
|
|
{
|
2020-11-16 21:58:53 +01:00
|
|
|
const QString homePath = QStandardPaths::standardLocations(QStandardPaths::HomeLocation)
|
|
|
|
|
.constFirst();
|
2020-03-11 18:49:02 +02:00
|
|
|
const QString ndkPath = QFileDialog::getExistingDirectory(this, tr("Select an NDK"), homePath);
|
|
|
|
|
|
|
|
|
|
if (m_androidConfig.isValidNdk(ndkPath)) {
|
|
|
|
|
m_androidConfig.addCustomNdk(ndkPath);
|
2020-05-20 09:54:50 +02:00
|
|
|
if (m_ui.ndkListWidget->findItems(ndkPath, Qt::MatchExactly).size() == 0) {
|
|
|
|
|
m_ui.ndkListWidget->addItem(new QListWidgetItem(Icons::UNLOCKED.icon(), ndkPath));
|
2020-03-11 18:49:02 +02:00
|
|
|
}
|
|
|
|
|
} else if (!ndkPath.isEmpty()) {
|
|
|
|
|
QMessageBox::warning(
|
|
|
|
|
this,
|
|
|
|
|
tr("Add Custom NDK"),
|
|
|
|
|
tr("The selected path has an invalid NDK. This might mean that the path contains space "
|
|
|
|
|
"characters, or that it does not have a \"toolchains\" sub-directory, or that the "
|
|
|
|
|
"NDK version could not be retrieved because of a missing \"source.properties\" or "
|
|
|
|
|
"\"RELEASE.TXT\" file"));
|
|
|
|
|
}
|
2019-12-23 16:13:23 +02:00
|
|
|
}
|
|
|
|
|
|
2020-01-07 13:54:07 +01:00
|
|
|
AndroidSettingsWidget::AndroidSettingsWidget()
|
2020-05-20 09:54:50 +02:00
|
|
|
{
|
|
|
|
|
m_ui.setupUi(this);
|
|
|
|
|
m_sdkManagerWidget = new AndroidSdkManagerWidget(m_androidConfig, &m_sdkManager,
|
|
|
|
|
m_ui.sdkManagerTab);
|
|
|
|
|
auto sdkMangerLayout = new QVBoxLayout(m_ui.sdkManagerTab);
|
2019-08-29 10:36:01 +02:00
|
|
|
sdkMangerLayout->setContentsMargins(0, 0, 0, 0);
|
2017-09-18 13:48:00 +02:00
|
|
|
sdkMangerLayout->addWidget(m_sdkManagerWidget);
|
2020-05-20 09:54:50 +02:00
|
|
|
connect(m_sdkManagerWidget, &AndroidSdkManagerWidget::updatingSdk, [this] {
|
2020-06-30 12:06:46 +03:00
|
|
|
// Disable the top level UI to keep the user from unintentionally interrupting operations
|
|
|
|
|
m_ui.javaSettingsGroupBox->setEnabled(false);
|
|
|
|
|
m_ui.androidSettingsGroupBox->setEnabled(false);
|
|
|
|
|
m_ui.androidOpenSSLSettingsGroupBox->setEnabled(false);
|
|
|
|
|
m_ui.CreateKitCheckBox->setEnabled(false);
|
2020-05-20 09:54:50 +02:00
|
|
|
m_ui.managerTabWidget->tabBar()->setEnabled(false);
|
2017-09-18 13:48:00 +02:00
|
|
|
});
|
2020-05-20 09:54:50 +02:00
|
|
|
connect(m_sdkManagerWidget, &AndroidSdkManagerWidget::updatingSdkFinished, [this] {
|
2020-06-30 12:06:46 +03:00
|
|
|
m_ui.javaSettingsGroupBox->setEnabled(true);
|
|
|
|
|
m_ui.androidSettingsGroupBox->setEnabled(true);
|
|
|
|
|
m_ui.androidOpenSSLSettingsGroupBox->setEnabled(true);
|
|
|
|
|
m_ui.CreateKitCheckBox->setEnabled(true);
|
2020-05-20 09:54:50 +02:00
|
|
|
m_ui.managerTabWidget->tabBar()->setEnabled(true);
|
2017-09-18 13:48:00 +02:00
|
|
|
});
|
2020-05-20 09:54:50 +02:00
|
|
|
connect(m_sdkManagerWidget, &AndroidSdkManagerWidget::licenseWorkflowStarted, [this] {
|
2020-07-22 17:46:58 +02:00
|
|
|
QObject *parentWidget = parent();
|
|
|
|
|
while (parentWidget) {
|
|
|
|
|
if (auto scrollArea = qobject_cast<QScrollArea *>(parentWidget)) {
|
|
|
|
|
scrollArea->ensureWidgetVisible(m_ui.managerTabWidget);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
parentWidget = parentWidget->parent();
|
|
|
|
|
};
|
2020-03-24 06:54:15 +01:00
|
|
|
});
|
2012-04-18 20:30:57 +03:00
|
|
|
|
2017-09-14 13:29:46 +02:00
|
|
|
QMap<int, QString> javaValidationPoints;
|
|
|
|
|
javaValidationPoints[JavaPathExistsRow] = tr("JDK path exists.");
|
|
|
|
|
javaValidationPoints[JavaJdkValidRow] = tr("JDK path is a valid JDK root folder.");
|
2020-05-20 12:51:21 +02:00
|
|
|
m_javaSummary = new SummaryWidget(javaValidationPoints, tr("Java Settings are OK."),
|
|
|
|
|
tr("Java settings have errors."), m_ui.javaDetailsWidget);
|
2017-09-14 13:29:46 +02:00
|
|
|
|
|
|
|
|
QMap<int, QString> androidValidationPoints;
|
|
|
|
|
androidValidationPoints[SdkPathExistsRow] = tr("Android SDK path exists.");
|
2019-08-12 01:41:41 +02:00
|
|
|
androidValidationPoints[SdkPathWritableRow] = tr("Android SDK path writable.");
|
2017-09-14 13:29:46 +02:00
|
|
|
androidValidationPoints[SdkToolsInstalledRow] = tr("SDK tools installed.");
|
|
|
|
|
androidValidationPoints[PlatformToolsInstalledRow] = tr("Platform tools installed.");
|
2019-08-05 14:46:01 +02:00
|
|
|
androidValidationPoints[SdkManagerSuccessfulRow] = tr(
|
2020-06-26 00:33:43 +03:00
|
|
|
"SDK manager runs (SDK Tools versions <= 26.x require exactly Java 1.8).");
|
2019-12-23 16:13:23 +02:00
|
|
|
androidValidationPoints[AllEssentialsInstalledRow] = tr(
|
|
|
|
|
"All essential packages installed for all installed Qt versions.");
|
2017-09-14 13:29:46 +02:00
|
|
|
androidValidationPoints[BuildToolsInstalledRow] = tr("Build tools installed.");
|
|
|
|
|
androidValidationPoints[PlatformSdkInstalledRow] = tr("Platform SDK installed.");
|
2020-05-20 12:51:21 +02:00
|
|
|
m_androidSummary = new SummaryWidget(androidValidationPoints, tr("Android settings are OK."),
|
|
|
|
|
tr("Android settings have errors."),
|
|
|
|
|
m_ui.androidDetailsWidget);
|
2017-09-14 13:29:46 +02:00
|
|
|
|
2020-02-28 19:27:03 +02:00
|
|
|
QMap<int, QString> openSslValidationPoints;
|
|
|
|
|
openSslValidationPoints[OpenSslPathExistsRow] = tr("OpenSSL path exists.");
|
|
|
|
|
openSslValidationPoints[OpenSslPriPathExists] = tr(
|
|
|
|
|
"QMake include project (openssl.pri) exists.");
|
|
|
|
|
openSslValidationPoints[OpenSslCmakeListsPathExists] = tr(
|
|
|
|
|
"CMake include project (CMakeLists.txt) exists.");
|
2020-05-20 12:51:21 +02:00
|
|
|
m_openSslSummary = new SummaryWidget(openSslValidationPoints,
|
|
|
|
|
tr("OpenSSL Settings are OK."),
|
|
|
|
|
tr("OpenSSL settings have errors."),
|
|
|
|
|
m_ui.openSslDetailsWidget);
|
2020-02-28 19:27:03 +02:00
|
|
|
|
2020-05-20 09:54:50 +02:00
|
|
|
connect(m_ui.OpenJDKLocationPathChooser, &PathChooser::rawPathChanged,
|
2019-12-23 16:13:23 +02:00
|
|
|
this, &AndroidSettingsWidget::validateJdk);
|
2020-07-20 19:07:28 +02:00
|
|
|
if (m_androidConfig.openJDKLocation().isEmpty())
|
|
|
|
|
m_androidConfig.setOpenJDKLocation(AndroidConfig::getJdkPath());
|
|
|
|
|
m_ui.OpenJDKLocationPathChooser->setFilePath(m_androidConfig.openJDKLocation());
|
2020-05-20 09:54:50 +02:00
|
|
|
m_ui.OpenJDKLocationPathChooser->setPromptDialogTitle(tr("Select JDK Path"));
|
2019-12-23 16:13:23 +02:00
|
|
|
|
2020-07-20 19:07:28 +02:00
|
|
|
if (m_androidConfig.sdkLocation().isEmpty())
|
|
|
|
|
m_androidConfig.setSdkLocation(AndroidConfig::defaultSdkPath());
|
|
|
|
|
m_ui.SDKLocationPathChooser->setFilePath(m_androidConfig.sdkLocation());
|
2020-07-01 16:52:17 +02:00
|
|
|
m_ui.SDKLocationPathChooser->setPromptDialogTitle(tr("Select Android SDK Folder"));
|
2019-12-23 16:13:23 +02:00
|
|
|
|
2020-05-20 09:54:50 +02:00
|
|
|
m_ui.openSslPathChooser->setPromptDialogTitle(tr("Select OpenSSL Include Project File"));
|
2020-07-20 19:07:28 +02:00
|
|
|
if (m_androidConfig.openSslLocation().isEmpty())
|
|
|
|
|
m_androidConfig.setOpenSslLocation(m_androidConfig.sdkLocation() / ("android_openssl"));
|
|
|
|
|
m_ui.openSslPathChooser->setFilePath(m_androidConfig.openSslLocation());
|
2020-05-20 09:54:50 +02:00
|
|
|
|
|
|
|
|
m_ui.CreateKitCheckBox->setChecked(m_androidConfig.automaticKitCreation());
|
|
|
|
|
|
2020-06-26 12:23:01 +02:00
|
|
|
const QIcon downloadIcon = Icons::ONLINE.icon();
|
2020-05-20 09:54:50 +02:00
|
|
|
m_ui.downloadSDKToolButton->setIcon(downloadIcon);
|
|
|
|
|
m_ui.downloadNDKToolButton->setIcon(downloadIcon);
|
|
|
|
|
m_ui.downloadOpenJDKToolButton->setIcon(downloadIcon);
|
2020-07-22 13:14:55 +03:00
|
|
|
m_ui.sdkToolsAutoDownloadButton->setToolTip(
|
|
|
|
|
tr("Automatically download Android SDK Tools to selected location.\n\n"
|
|
|
|
|
"If the selected path contains no valid SDK Tools, the SDK Tools package is downloaded\n"
|
|
|
|
|
"from %1,\n"
|
|
|
|
|
"and extracted to the selected path.\n"
|
|
|
|
|
"After the SDK Tools are properly set up, you are prompted to install any essential\n"
|
|
|
|
|
"packages required for Qt to build for Android.")
|
|
|
|
|
.arg(m_androidConfig.sdkToolsUrl().toString()));
|
|
|
|
|
|
|
|
|
|
m_ui.downloadOpenSSLPrebuiltLibs->setToolTip(
|
|
|
|
|
tr("Automatically download OpenSSL prebuilt libraries.\n\n"
|
|
|
|
|
"These libraries can be shipped with your application if any SSL operations\n"
|
|
|
|
|
"are performed. Find the checkbox under \"Projects > Build > Build Steps >\n"
|
|
|
|
|
"Build Android APK > Additional Libraries\".\n"
|
|
|
|
|
"If the automatic download fails, Qt Creator proposes to open the download URL\n"
|
|
|
|
|
"in the system's browser for manual download."));
|
2019-08-23 19:13:51 +02:00
|
|
|
|
2020-05-20 09:54:50 +02:00
|
|
|
connect(m_ui.SDKLocationPathChooser, &PathChooser::rawPathChanged,
|
2020-02-10 20:25:24 +02:00
|
|
|
this, &AndroidSettingsWidget::onSdkPathChanged);
|
2020-03-11 18:49:02 +02:00
|
|
|
|
2020-05-20 09:54:50 +02:00
|
|
|
connect(m_ui.ndkListWidget, &QListWidget::currentTextChanged, [this](const QString &ndk) {
|
2020-06-30 12:21:38 +03:00
|
|
|
updateUI();
|
2020-05-20 09:54:50 +02:00
|
|
|
m_ui.removeCustomNdkButton->setEnabled(m_androidConfig.getCustomNdkList().contains(ndk));
|
2020-02-24 11:19:02 +02:00
|
|
|
});
|
2020-05-20 09:54:50 +02:00
|
|
|
connect(m_ui.addCustomNdkButton, &QPushButton::clicked, this,
|
2020-02-24 11:19:02 +02:00
|
|
|
&AndroidSettingsWidget::addCustomNdkItem);
|
2020-05-20 09:54:50 +02:00
|
|
|
connect(m_ui.removeCustomNdkButton, &QPushButton::clicked, this, [this] {
|
|
|
|
|
m_androidConfig.removeCustomNdk(m_ui.ndkListWidget->currentItem()->text());
|
|
|
|
|
m_ui.ndkListWidget->takeItem(m_ui.ndkListWidget->currentRow());
|
2020-02-24 11:19:02 +02:00
|
|
|
});
|
|
|
|
|
|
2020-05-20 09:54:50 +02:00
|
|
|
connect(m_ui.openSslPathChooser, &PathChooser::rawPathChanged,
|
|
|
|
|
this, &AndroidSettingsWidget::validateOpenSsl);
|
|
|
|
|
connect(m_ui.CreateKitCheckBox, &QAbstractButton::toggled,
|
2016-06-26 22:52:59 +03:00
|
|
|
this, &AndroidSettingsWidget::createKitToggled);
|
2020-05-20 09:54:50 +02:00
|
|
|
connect(m_ui.downloadNDKToolButton, &QAbstractButton::clicked,
|
2016-06-26 22:52:59 +03:00
|
|
|
this, &AndroidSettingsWidget::openNDKDownloadUrl);
|
2020-05-20 09:54:50 +02:00
|
|
|
connect(m_ui.downloadSDKToolButton, &QAbstractButton::clicked,
|
2019-12-23 16:13:23 +02:00
|
|
|
this, &AndroidSettingsWidget::openSDKDownloadUrl);
|
2020-05-20 09:54:50 +02:00
|
|
|
connect(m_ui.downloadOpenSSLPrebuiltLibs, &QAbstractButton::clicked,
|
2020-02-28 19:27:03 +02:00
|
|
|
this, &AndroidSettingsWidget::downloadOpenSslRepo);
|
2020-05-20 09:54:50 +02:00
|
|
|
connect(m_ui.downloadOpenJDKToolButton, &QAbstractButton::clicked,
|
2016-06-26 22:52:59 +03:00
|
|
|
this, &AndroidSettingsWidget::openOpenJDKDownloadUrl);
|
2017-09-18 13:48:00 +02:00
|
|
|
// Validate SDK again after any change in SDK packages.
|
2020-05-20 09:54:50 +02:00
|
|
|
connect(&m_sdkManager, &AndroidSdkManager::packageReloadFinished,
|
2020-03-16 20:14:56 +02:00
|
|
|
this, &AndroidSettingsWidget::validateSdk);
|
2020-05-20 09:54:50 +02:00
|
|
|
connect(m_ui.sdkToolsAutoDownloadButton, &QAbstractButton::clicked,
|
2020-03-16 20:14:56 +02:00
|
|
|
this, &AndroidSettingsWidget::downloadSdk);
|
2020-05-20 09:54:50 +02:00
|
|
|
connect(&m_sdkDownloader, &AndroidSdkDownloader::sdkDownloaderError, this, [this](const QString &error) {
|
2020-03-16 20:14:56 +02:00
|
|
|
QMessageBox::warning(this, AndroidSdkDownloader::dialogTitle(), error);
|
|
|
|
|
});
|
2020-05-20 09:54:50 +02:00
|
|
|
connect(&m_sdkDownloader, &AndroidSdkDownloader::sdkExtracted, this, [this] {
|
|
|
|
|
m_sdkManager.reloadPackages(true);
|
2020-03-16 20:14:56 +02:00
|
|
|
updateUI();
|
|
|
|
|
apply();
|
|
|
|
|
|
|
|
|
|
QMetaObject::Connection *const openSslOneShot = new QMetaObject::Connection;
|
2020-05-20 09:54:50 +02:00
|
|
|
*openSslOneShot = connect(&m_sdkManager, &AndroidSdkManager::packageReloadFinished,
|
|
|
|
|
this, [this, openSslOneShot] {
|
2020-03-16 20:14:56 +02:00
|
|
|
QObject::disconnect(*openSslOneShot);
|
|
|
|
|
downloadOpenSslRepo(true);
|
|
|
|
|
delete openSslOneShot;
|
|
|
|
|
});
|
2019-12-23 16:13:23 +02:00
|
|
|
});
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
|
2013-12-16 20:19:07 +01:00
|
|
|
AndroidSettingsWidget::~AndroidSettingsWidget()
|
2012-04-18 20:30:57 +03:00
|
|
|
{
|
2017-09-18 13:48:00 +02:00
|
|
|
// Deleting m_sdkManagerWidget will cancel all ongoing and pending sdkmanager operations.
|
|
|
|
|
delete m_sdkManagerWidget;
|
2015-01-08 17:05:09 +01:00
|
|
|
}
|
|
|
|
|
|
2017-09-14 13:29:46 +02:00
|
|
|
void AndroidSettingsWidget::validateJdk()
|
2012-04-18 20:30:57 +03:00
|
|
|
{
|
2020-05-20 09:54:50 +02:00
|
|
|
m_androidConfig.setOpenJDKLocation(m_ui.OpenJDKLocationPathChooser->filePath());
|
2017-09-14 13:29:46 +02:00
|
|
|
bool jdkPathExists = m_androidConfig.openJDKLocation().exists();
|
2020-05-20 12:51:21 +02:00
|
|
|
m_javaSummary->setPointValid(JavaPathExistsRow, jdkPathExists);
|
2017-09-14 13:29:46 +02:00
|
|
|
|
2020-05-20 09:54:50 +02:00
|
|
|
const FilePath bin = m_androidConfig.openJDKLocation().pathAppended("bin/javac" QTC_HOST_EXE_SUFFIX);
|
2020-05-20 12:51:21 +02:00
|
|
|
m_javaSummary->setPointValid(JavaJdkValidRow, jdkPathExists && bin.exists());
|
2020-03-23 14:40:37 +01:00
|
|
|
|
2017-09-14 13:29:46 +02:00
|
|
|
updateUI();
|
2020-06-26 00:34:51 +03:00
|
|
|
|
|
|
|
|
if (m_isInitialReloadDone)
|
|
|
|
|
m_sdkManager.reloadPackages(true);
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
|
2020-02-28 19:27:03 +02:00
|
|
|
void AndroidSettingsWidget::validateOpenSsl()
|
|
|
|
|
{
|
2020-05-20 09:54:50 +02:00
|
|
|
m_androidConfig.setOpenSslLocation(m_ui.openSslPathChooser->filePath());
|
2020-02-28 19:27:03 +02:00
|
|
|
|
2020-05-20 12:51:21 +02:00
|
|
|
m_openSslSummary->setPointValid(OpenSslPathExistsRow, m_androidConfig.openSslLocation().exists());
|
2020-02-28 19:27:03 +02:00
|
|
|
|
|
|
|
|
const bool priFileExists = m_androidConfig.openSslLocation().pathAppended("openssl.pri").exists();
|
2020-05-20 12:51:21 +02:00
|
|
|
m_openSslSummary->setPointValid(OpenSslPriPathExists, priFileExists);
|
2020-02-28 19:27:03 +02:00
|
|
|
const bool cmakeListsExists
|
|
|
|
|
= m_androidConfig.openSslLocation().pathAppended("CMakeLists.txt").exists();
|
2020-05-20 12:51:21 +02:00
|
|
|
m_openSslSummary->setPointValid(OpenSslCmakeListsPathExists, cmakeListsExists);
|
|
|
|
|
|
2020-02-28 19:27:03 +02:00
|
|
|
updateUI();
|
2020-01-13 15:18:35 +02:00
|
|
|
}
|
|
|
|
|
|
2017-09-26 11:24:16 +02:00
|
|
|
void AndroidSettingsWidget::onSdkPathChanged()
|
2012-04-18 20:30:57 +03:00
|
|
|
{
|
2021-08-12 19:22:41 +02:00
|
|
|
const FilePath sdkPath = m_ui.SDKLocationPathChooser->filePath().cleanPath();
|
2017-09-14 13:29:46 +02:00
|
|
|
m_androidConfig.setSdkLocation(sdkPath);
|
2020-05-20 09:54:50 +02:00
|
|
|
FilePath currentOpenSslPath = m_androidConfig.openSslLocation();
|
2020-04-17 14:23:21 +03:00
|
|
|
if (currentOpenSslPath.isEmpty() || !currentOpenSslPath.exists())
|
|
|
|
|
currentOpenSslPath = sdkPath.pathAppended("android_openssl");
|
2021-03-15 10:31:40 +01:00
|
|
|
m_ui.openSslPathChooser->setFilePath(currentOpenSslPath);
|
2017-09-26 11:24:16 +02:00
|
|
|
// Package reload will trigger validateSdk.
|
2020-05-20 09:54:50 +02:00
|
|
|
m_sdkManager.reloadPackages();
|
2017-09-26 11:24:16 +02:00
|
|
|
}
|
2017-09-14 13:29:46 +02:00
|
|
|
|
2017-09-26 11:24:16 +02:00
|
|
|
void AndroidSettingsWidget::validateSdk()
|
|
|
|
|
{
|
2021-08-12 19:22:41 +02:00
|
|
|
const FilePath sdkPath = m_ui.SDKLocationPathChooser->filePath().cleanPath();
|
2019-12-23 16:13:23 +02:00
|
|
|
m_androidConfig.setSdkLocation(sdkPath);
|
|
|
|
|
|
2020-05-20 12:51:21 +02:00
|
|
|
m_androidSummary->setPointValid(SdkPathExistsRow, m_androidConfig.sdkLocation().exists());
|
2021-08-26 11:48:16 +02:00
|
|
|
m_androidSummary->setPointValid(SdkPathWritableRow, m_androidConfig.sdkLocation().isWritableDir());
|
2020-05-20 12:51:21 +02:00
|
|
|
m_androidSummary->setPointValid(SdkToolsInstalledRow,
|
|
|
|
|
!m_androidConfig.sdkToolsVersion().isNull());
|
|
|
|
|
m_androidSummary->setPointValid(PlatformToolsInstalledRow,
|
|
|
|
|
m_androidConfig.adbToolPath().exists());
|
|
|
|
|
m_androidSummary->setPointValid(BuildToolsInstalledRow,
|
|
|
|
|
!m_androidConfig.buildToolsVersion().isNull());
|
|
|
|
|
m_androidSummary->setPointValid(SdkManagerSuccessfulRow, m_sdkManager.packageListingSuccessful());
|
2017-09-26 11:24:16 +02:00
|
|
|
// installedSdkPlatforms should not trigger a package reload as validate SDK is only called
|
|
|
|
|
// after AndroidSdkManager::packageReloadFinished.
|
2020-05-20 12:51:21 +02:00
|
|
|
m_androidSummary->setPointValid(PlatformSdkInstalledRow,
|
|
|
|
|
!m_sdkManager.installedSdkPlatforms().isEmpty());
|
2020-07-01 23:42:34 +03:00
|
|
|
m_androidSummary->setPointValid(AllEssentialsInstalledRow,
|
|
|
|
|
m_androidConfig.allEssentialsInstalled(&m_sdkManager));
|
2020-05-20 12:51:21 +02:00
|
|
|
|
|
|
|
|
const bool sdkToolsOk = m_androidSummary->rowsOk({SdkPathExistsRow,
|
|
|
|
|
SdkPathWritableRow,
|
|
|
|
|
SdkToolsInstalledRow,
|
|
|
|
|
SdkManagerSuccessfulRow});
|
|
|
|
|
const bool componentsOk = m_androidSummary->rowsOk({PlatformToolsInstalledRow,
|
|
|
|
|
BuildToolsInstalledRow,
|
|
|
|
|
PlatformSdkInstalledRow,
|
|
|
|
|
AllEssentialsInstalledRow});
|
2019-12-23 16:13:23 +02:00
|
|
|
m_androidConfig.setSdkFullyConfigured(sdkToolsOk && componentsOk);
|
2020-06-26 01:06:16 +03:00
|
|
|
if (sdkToolsOk && !componentsOk) {
|
2017-09-26 11:24:16 +02:00
|
|
|
// Ask user to install essential SDK components. Works only for sdk tools version >= 26.0.0
|
|
|
|
|
QString message = tr("Android SDK installation is missing necessary packages. Do you "
|
|
|
|
|
"want to install the missing packages?");
|
2020-07-01 16:52:17 +02:00
|
|
|
auto userInput = QMessageBox::information(this, tr("Missing Android SDK Packages"),
|
2017-09-26 11:24:16 +02:00
|
|
|
message, QMessageBox::Yes | QMessageBox::No);
|
|
|
|
|
if (userInput == QMessageBox::Yes) {
|
2020-05-20 09:54:50 +02:00
|
|
|
m_ui.managerTabWidget->setCurrentWidget(m_ui.sdkManagerTab);
|
2017-09-26 11:24:16 +02:00
|
|
|
m_sdkManagerWidget->installEssentials();
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-12-23 16:13:23 +02:00
|
|
|
|
|
|
|
|
updateNdkList();
|
2020-06-30 12:21:38 +03:00
|
|
|
updateUI();
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
|
2014-02-18 20:20:32 +01:00
|
|
|
void AndroidSettingsWidget::openSDKDownloadUrl()
|
|
|
|
|
{
|
2016-09-22 20:45:00 +02:00
|
|
|
QDesktopServices::openUrl(QUrl::fromUserInput("https://developer.android.com/studio/"));
|
2014-02-18 20:20:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AndroidSettingsWidget::openNDKDownloadUrl()
|
|
|
|
|
{
|
2016-09-22 20:45:00 +02:00
|
|
|
QDesktopServices::openUrl(QUrl::fromUserInput("https://developer.android.com/ndk/downloads/"));
|
2014-02-18 20:20:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AndroidSettingsWidget::openOpenJDKDownloadUrl()
|
|
|
|
|
{
|
2020-06-26 14:37:48 +03:00
|
|
|
if (HostOsInfo::isLinuxHost())
|
|
|
|
|
QDesktopServices::openUrl(QUrl::fromUserInput("https://openjdk.java.net/install/"));
|
|
|
|
|
else
|
|
|
|
|
QDesktopServices::openUrl(QUrl::fromUserInput("https://adoptopenjdk.net/"));
|
2014-02-18 20:20:32 +01:00
|
|
|
}
|
|
|
|
|
|
2020-02-28 19:27:03 +02:00
|
|
|
void AndroidSettingsWidget::downloadOpenSslRepo(const bool silent)
|
|
|
|
|
{
|
2020-05-20 09:54:50 +02:00
|
|
|
const FilePath openSslPath = m_ui.openSslPathChooser->filePath();
|
2020-02-28 19:27:03 +02:00
|
|
|
const QString openSslCloneTitle(tr("OpenSSL Cloning"));
|
|
|
|
|
|
2020-05-20 12:51:21 +02:00
|
|
|
if (m_openSslSummary->allRowsOk()) {
|
2020-03-15 01:49:59 +02:00
|
|
|
if (!silent) {
|
2020-02-28 19:27:03 +02:00
|
|
|
QMessageBox::information(this, openSslCloneTitle,
|
|
|
|
|
tr("OpenSSL prebuilt libraries repository is already configured."));
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const QString openSslRepo("https://github.com/KDAB/android_openssl.git");
|
2020-05-20 09:54:50 +02:00
|
|
|
QtcProcess *gitCloner = new QtcProcess(this);
|
|
|
|
|
CommandLine gitCloneCommand("git", {"clone", "--depth=1", openSslRepo, openSslPath.toString()});
|
2020-04-17 14:23:21 +03:00
|
|
|
gitCloner->setCommand(gitCloneCommand);
|
|
|
|
|
|
2020-05-20 09:54:50 +02:00
|
|
|
qCDebug(androidsettingswidget) << "Cloning OpenSSL repo: " << gitCloneCommand.toUserOutput();
|
2020-02-28 19:27:03 +02:00
|
|
|
|
|
|
|
|
QDir openSslDir(openSslPath.toString());
|
2020-06-11 15:51:20 +03:00
|
|
|
const bool isEmptyDir = openSslDir.isEmpty(QDir::AllEntries | QDir::NoDotAndDotDot
|
|
|
|
|
| QDir::Hidden | QDir::System);
|
|
|
|
|
if (openSslDir.exists() && !isEmptyDir) {
|
|
|
|
|
QMessageBox::information(
|
|
|
|
|
this,
|
|
|
|
|
openSslCloneTitle,
|
|
|
|
|
tr("The selected download path (%1) for OpenSSL already exists and the directory is "
|
|
|
|
|
"not empty. Select a different path or make sure it is an empty directory.")
|
|
|
|
|
.arg(QDir::toNativeSeparators(openSslPath.toString())));
|
|
|
|
|
return;
|
2020-02-28 19:27:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QProgressDialog *openSslProgressDialog
|
2020-03-14 17:48:11 +02:00
|
|
|
= new QProgressDialog(tr("Cloning OpenSSL prebuilt libraries..."),
|
2020-02-28 19:27:03 +02:00
|
|
|
tr("Cancel"), 0, 0);
|
2020-06-25 12:11:45 +02:00
|
|
|
openSslProgressDialog->setWindowModality(Qt::ApplicationModal);
|
2020-02-28 19:27:03 +02:00
|
|
|
openSslProgressDialog->setWindowTitle(openSslCloneTitle);
|
|
|
|
|
openSslProgressDialog->setFixedSize(openSslProgressDialog->sizeHint());
|
|
|
|
|
|
2020-05-20 09:54:50 +02:00
|
|
|
connect(openSslProgressDialog, &QProgressDialog::canceled, gitCloner, &QtcProcess::kill);
|
2020-02-28 19:27:03 +02:00
|
|
|
|
2020-06-24 14:25:17 +03:00
|
|
|
auto failDialog = [=](const QString &msgSuffix = {}) {
|
2020-08-10 19:51:03 +02:00
|
|
|
QStringList sl;
|
|
|
|
|
sl << tr("OpenSSL prebuilt libraries cloning failed.");
|
|
|
|
|
if (!msgSuffix.isEmpty())
|
|
|
|
|
sl << msgSuffix;
|
|
|
|
|
sl << tr("Opening OpenSSL URL for manual download.");
|
2020-06-24 14:25:17 +03:00
|
|
|
QMessageBox msgBox;
|
2020-08-10 19:51:03 +02:00
|
|
|
msgBox.setText(sl.join(" "));
|
2020-07-28 11:37:56 +03:00
|
|
|
msgBox.addButton(tr("Cancel"), QMessageBox::RejectRole);
|
2020-07-01 16:52:17 +02:00
|
|
|
QAbstractButton *openButton = msgBox.addButton(tr("Open Download URL"), QMessageBox::ActionRole);
|
2020-06-24 14:25:17 +03:00
|
|
|
msgBox.exec();
|
|
|
|
|
|
|
|
|
|
if (msgBox.clickedButton() == openButton)
|
|
|
|
|
QDesktopServices::openUrl(QUrl::fromUserInput(openSslRepo));
|
|
|
|
|
openButton->deleteLater();
|
|
|
|
|
};
|
2020-02-28 19:27:03 +02:00
|
|
|
|
2021-05-28 14:48:25 +02:00
|
|
|
connect(gitCloner, &QtcProcess::finished, [=] {
|
2020-02-28 19:27:03 +02:00
|
|
|
openSslProgressDialog->close();
|
|
|
|
|
validateOpenSsl();
|
2020-06-25 12:24:58 +02:00
|
|
|
m_ui.openSslPathChooser->triggerChanged(); // After cloning, the path exists
|
2020-02-28 19:27:03 +02:00
|
|
|
|
2020-06-24 14:25:17 +03:00
|
|
|
if (!openSslProgressDialog->wasCanceled()
|
2021-05-28 14:48:25 +02:00
|
|
|
|| gitCloner->result() == QtcProcess::FinishedWithError) {
|
2020-06-24 14:25:17 +03:00
|
|
|
failDialog();
|
2020-02-28 19:27:03 +02:00
|
|
|
}
|
|
|
|
|
});
|
2020-06-24 14:25:17 +03:00
|
|
|
|
|
|
|
|
connect(gitCloner, &QtcProcess::errorOccurred, this, [=](QProcess::ProcessError error) {
|
|
|
|
|
openSslProgressDialog->close();
|
|
|
|
|
if (error == QProcess::FailedToStart) {
|
2020-08-10 19:51:03 +02:00
|
|
|
failDialog(tr("The Git tool might not be installed properly on your system."));
|
2020-06-24 14:25:17 +03:00
|
|
|
} else {
|
|
|
|
|
failDialog();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
openSslProgressDialog->show();
|
|
|
|
|
gitCloner->start();
|
2020-02-28 19:27:03 +02:00
|
|
|
}
|
|
|
|
|
|
2013-02-14 15:51:59 +01:00
|
|
|
void AndroidSettingsWidget::createKitToggled()
|
|
|
|
|
{
|
2020-05-20 09:54:50 +02:00
|
|
|
m_androidConfig.setAutomaticKitCreation(m_ui.CreateKitCheckBox->isChecked());
|
2013-02-14 15:51:59 +01:00
|
|
|
}
|
|
|
|
|
|
2017-09-14 13:29:46 +02:00
|
|
|
void AndroidSettingsWidget::updateUI()
|
|
|
|
|
{
|
2020-05-20 12:51:21 +02:00
|
|
|
const bool javaSetupOk = m_javaSummary->allRowsOk();
|
|
|
|
|
const bool sdkToolsOk = m_androidSummary->rowsOk({SdkPathExistsRow, SdkPathWritableRow, SdkToolsInstalledRow});
|
|
|
|
|
const bool androidSetupOk = m_androidSummary->allRowsOk();
|
|
|
|
|
const bool openSslOk = m_openSslSummary->allRowsOk();
|
2017-09-18 13:48:00 +02:00
|
|
|
|
2020-05-20 09:54:50 +02:00
|
|
|
m_ui.sdkManagerTab->setEnabled(sdkToolsOk);
|
2017-09-18 13:48:00 +02:00
|
|
|
|
2020-05-20 09:54:50 +02:00
|
|
|
const QListWidgetItem *currentItem = m_ui.ndkListWidget->currentItem();
|
2020-05-20 12:51:21 +02:00
|
|
|
const FilePath currentNdk = FilePath::fromString(currentItem ? currentItem->text() : "");
|
2020-06-30 12:10:21 +03:00
|
|
|
const QString infoText = tr("(SDK Version: %1, NDK Version: %2)")
|
2020-05-20 12:51:21 +02:00
|
|
|
.arg(m_androidConfig.sdkToolsVersion().toString())
|
|
|
|
|
.arg(currentNdk.isEmpty() ? "" : m_androidConfig.ndkVersion(currentNdk).toString());
|
|
|
|
|
m_androidSummary->setInfoText(androidSetupOk ? infoText : "");
|
2017-09-18 13:48:00 +02:00
|
|
|
|
2020-05-20 12:51:21 +02:00
|
|
|
m_javaSummary->setSetupOk(javaSetupOk);
|
|
|
|
|
m_androidSummary->setSetupOk(androidSetupOk);
|
|
|
|
|
m_openSslSummary->setSetupOk(openSslOk);
|
2017-09-14 13:29:46 +02:00
|
|
|
}
|
|
|
|
|
|
2019-12-23 16:13:23 +02:00
|
|
|
void AndroidSettingsWidget::downloadSdk()
|
|
|
|
|
{
|
2020-05-18 18:58:32 +03:00
|
|
|
if (m_androidConfig.sdkToolsOk()) {
|
2020-03-16 20:14:56 +02:00
|
|
|
QMessageBox::warning(this, AndroidSdkDownloader::dialogTitle(),
|
|
|
|
|
tr("The selected path already has a valid SDK Tools package."));
|
|
|
|
|
validateSdk();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-20 12:51:21 +02:00
|
|
|
const QString message = tr("Download and install Android SDK Tools to: %1?")
|
2021-08-12 19:22:41 +02:00
|
|
|
.arg(m_ui.SDKLocationPathChooser->filePath().cleanPath().toUserOutput());
|
2019-12-23 16:13:23 +02:00
|
|
|
auto userInput = QMessageBox::information(this, AndroidSdkDownloader::dialogTitle(),
|
|
|
|
|
message, QMessageBox::Yes | QMessageBox::No);
|
|
|
|
|
if (userInput == QMessageBox::Yes) {
|
2020-05-20 12:51:21 +02:00
|
|
|
if (m_javaSummary->allRowsOk()) {
|
2021-05-18 13:03:38 +02:00
|
|
|
auto javaPath = m_ui.OpenJDKLocationPathChooser->filePath();
|
2021-08-12 19:22:41 +02:00
|
|
|
m_sdkDownloader.downloadAndExtractSdk(
|
2021-09-15 15:16:56 +02:00
|
|
|
javaPath,
|
|
|
|
|
m_ui.SDKLocationPathChooser->filePath().cleanPath());
|
2019-12-23 16:13:23 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-10 12:53:28 +01:00
|
|
|
// AndroidSettingsPage
|
|
|
|
|
|
|
|
|
|
AndroidSettingsPage::AndroidSettingsPage()
|
|
|
|
|
{
|
|
|
|
|
setId(Constants::ANDROID_SETTINGS_ID);
|
|
|
|
|
setDisplayName(AndroidSettingsWidget::tr("Android"));
|
|
|
|
|
setCategory(ProjectExplorer::Constants::DEVICE_SETTINGS_CATEGORY);
|
2020-07-22 13:03:21 +03:00
|
|
|
setWidgetCreator([] { return new AndroidSettingsWidget; });
|
2020-01-10 12:53:28 +01:00
|
|
|
}
|
2012-04-18 20:30:57 +03:00
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Android
|