2013-09-26 18:38:44 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
2014-01-07 13:27:11 +01:00
|
|
|
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
|
2013-09-26 18:38:44 +02:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator.
|
|
|
|
|
**
|
|
|
|
|
** 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
|
|
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
2014-10-01 13:21:18 +02:00
|
|
|
** conditions see http://www.qt.io/licensing. For further information
|
|
|
|
|
** use the contact form at http://www.qt.io/contact-us.
|
2013-09-26 18:38:44 +02:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
** 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.
|
2013-09-26 18:38:44 +02:00
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
|
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "createandroidmanifestwizard.h"
|
|
|
|
|
|
2014-09-22 16:20:51 +03:00
|
|
|
#include <android/androidconfigurations.h>
|
2014-06-25 15:42:11 +02:00
|
|
|
#include <android/androidmanager.h>
|
|
|
|
|
#include <android/androidqtsupport.h>
|
|
|
|
|
|
|
|
|
|
#include <coreplugin/editormanager/editormanager.h>
|
|
|
|
|
#include <coreplugin/coreconstants.h>
|
|
|
|
|
|
2013-09-26 18:38:44 +02:00
|
|
|
#include <projectexplorer/target.h>
|
2014-06-25 15:42:11 +02:00
|
|
|
|
2013-10-29 16:19:24 +01:00
|
|
|
#include <qmakeprojectmanager/qmakeproject.h>
|
|
|
|
|
#include <qmakeprojectmanager/qmakenodes.h>
|
2014-06-25 15:42:11 +02:00
|
|
|
|
2013-09-26 18:38:44 +02:00
|
|
|
#include <proparser/prowriter.h>
|
2014-06-25 15:42:11 +02:00
|
|
|
|
|
|
|
|
#include <qtsupport/qtkitinformation.h>
|
|
|
|
|
|
2014-09-22 16:20:51 +03:00
|
|
|
#include <QCheckBox>
|
2013-09-26 18:38:44 +02:00
|
|
|
#include <QComboBox>
|
|
|
|
|
#include <QFormLayout>
|
|
|
|
|
#include <QLabel>
|
|
|
|
|
#include <QMessageBox>
|
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
|
|
|
|
|
|
using namespace Android;
|
2014-07-23 12:47:51 +02:00
|
|
|
using namespace QmakeAndroidSupport::Internal;
|
2014-09-22 16:20:51 +03:00
|
|
|
using namespace Utils;
|
2014-06-25 15:42:11 +02:00
|
|
|
|
2013-10-29 14:22:31 +01:00
|
|
|
using QmakeProjectManager::QmakeProject;
|
|
|
|
|
using QmakeProjectManager::QmakeProFileNode;
|
2013-09-26 18:38:44 +02:00
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// NoApplicationProFilePage
|
|
|
|
|
//
|
|
|
|
|
NoApplicationProFilePage::NoApplicationProFilePage(CreateAndroidManifestWizard *wizard)
|
|
|
|
|
: m_wizard(wizard)
|
|
|
|
|
{
|
|
|
|
|
QVBoxLayout *layout = new QVBoxLayout(this);
|
|
|
|
|
QLabel *label = new QLabel(this);
|
|
|
|
|
label->setWordWrap(true);
|
|
|
|
|
label->setText(tr("No application .pro file found in this project."));
|
|
|
|
|
layout->addWidget(label);
|
|
|
|
|
setTitle(tr("No Application .pro File"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// ChooseProFilePage
|
|
|
|
|
//
|
2013-10-29 14:22:31 +01:00
|
|
|
ChooseProFilePage::ChooseProFilePage(CreateAndroidManifestWizard *wizard, const QList<QmakeProFileNode *> &nodes)
|
2013-09-26 18:38:44 +02:00
|
|
|
: m_wizard(wizard)
|
|
|
|
|
{
|
|
|
|
|
QFormLayout *fl = new QFormLayout(this);
|
|
|
|
|
QLabel *label = new QLabel(this);
|
|
|
|
|
label->setWordWrap(true);
|
2014-09-22 16:20:51 +03:00
|
|
|
label->setText(tr("Select the .pro file for which you want to create the Android template files."));
|
2013-09-26 18:38:44 +02:00
|
|
|
fl->addRow(label);
|
|
|
|
|
|
|
|
|
|
m_comboBox = new QComboBox(this);
|
2013-10-29 14:22:31 +01:00
|
|
|
foreach (QmakeProFileNode *node, nodes)
|
2013-09-26 18:38:44 +02:00
|
|
|
m_comboBox->addItem(node->displayName(), QVariant::fromValue(static_cast<void *>(node))); // TODO something more?
|
|
|
|
|
|
2013-11-19 18:34:26 +01:00
|
|
|
nodeSelected(0);
|
2013-09-26 18:38:44 +02:00
|
|
|
connect(m_comboBox, SIGNAL(currentIndexChanged(int)),
|
|
|
|
|
this, SLOT(nodeSelected(int)));
|
|
|
|
|
|
|
|
|
|
fl->addRow(tr(".pro file:"), m_comboBox);
|
|
|
|
|
setTitle(tr("Select a .pro File"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ChooseProFilePage::nodeSelected(int index)
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(index)
|
2013-10-29 14:22:31 +01:00
|
|
|
m_wizard->setNode(static_cast<QmakeProFileNode *>(m_comboBox->itemData(m_comboBox->currentIndex()).value<void *>()));
|
2013-09-26 18:38:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// ChooseDirectoryPage
|
|
|
|
|
//
|
|
|
|
|
ChooseDirectoryPage::ChooseDirectoryPage(CreateAndroidManifestWizard *wizard)
|
2014-03-12 15:20:39 +01:00
|
|
|
: m_wizard(wizard), m_androidPackageSourceDir(0), m_complete(true)
|
2013-09-26 18:38:44 +02:00
|
|
|
{
|
2013-10-16 11:02:37 +02:00
|
|
|
QString androidPackageDir = m_wizard->node()->singleVariableValue(QmakeProjectManager::AndroidPackageSourceDir);
|
2013-09-26 18:38:44 +02:00
|
|
|
|
|
|
|
|
QFormLayout *fl = new QFormLayout(this);
|
|
|
|
|
QLabel *label = new QLabel(this);
|
|
|
|
|
label->setWordWrap(true);
|
|
|
|
|
fl->addRow(label);
|
|
|
|
|
|
2014-03-12 15:20:39 +01:00
|
|
|
m_sourceDirectoryWarning = new QLabel(this);
|
|
|
|
|
m_sourceDirectoryWarning->setVisible(false);
|
2014-03-31 13:38:15 +02:00
|
|
|
m_sourceDirectoryWarning->setText(tr("The Android package source directory cannot be the same as the project directory."));
|
2014-03-12 15:20:39 +01:00
|
|
|
m_sourceDirectoryWarning->setWordWrap(true);
|
|
|
|
|
m_warningIcon = new QLabel(this);
|
|
|
|
|
m_warningIcon->setVisible(false);
|
2014-06-13 11:19:54 +02:00
|
|
|
m_warningIcon->setPixmap(QPixmap(QLatin1String(Core::Constants::ICON_ERROR)));
|
2014-03-12 15:20:39 +01:00
|
|
|
m_warningIcon->setWordWrap(true);
|
|
|
|
|
m_warningIcon->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
|
|
|
|
|
|
|
|
|
|
QHBoxLayout *hbox = new QHBoxLayout;
|
|
|
|
|
hbox->addWidget(m_warningIcon);
|
|
|
|
|
hbox->addWidget(m_sourceDirectoryWarning);
|
|
|
|
|
hbox->setAlignment(m_warningIcon, Qt::AlignTop);
|
|
|
|
|
|
|
|
|
|
fl->addRow(hbox);
|
|
|
|
|
|
2014-09-22 16:20:51 +03:00
|
|
|
m_androidPackageSourceDir = new PathChooser(this);
|
|
|
|
|
m_androidPackageSourceDir->setExpectedKind(PathChooser::Directory);
|
2013-09-26 18:38:44 +02:00
|
|
|
fl->addRow(tr("Android package source directory:"), m_androidPackageSourceDir);
|
|
|
|
|
|
|
|
|
|
if (androidPackageDir.isEmpty()) {
|
2014-03-12 15:20:39 +01:00
|
|
|
label->setText(tr("Select the Android package source directory.\n\n"
|
2013-10-09 16:37:42 +02:00
|
|
|
"The files in the Android package source directory are copied to the build directory's "
|
|
|
|
|
"Android directory and the default files are overwritten."));
|
2013-09-26 18:38:44 +02:00
|
|
|
|
|
|
|
|
m_androidPackageSourceDir->setPath(QFileInfo(m_wizard->node()->path()).absolutePath().append(QLatin1String("/android")));
|
2014-03-12 15:20:39 +01:00
|
|
|
connect(m_androidPackageSourceDir, SIGNAL(changed(QString)),
|
|
|
|
|
this, SLOT(checkPackageSourceDir()));
|
2013-09-26 18:38:44 +02:00
|
|
|
} else {
|
2014-09-22 16:20:51 +03:00
|
|
|
label->setText(tr("The Android template files will be created in the ANDROID_PACKAGE_SOURCE_DIR set in the .pro file."));
|
2013-09-26 18:38:44 +02:00
|
|
|
m_androidPackageSourceDir->setPath(androidPackageDir);
|
|
|
|
|
m_androidPackageSourceDir->setReadOnly(true);
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-12 15:20:39 +01:00
|
|
|
|
2013-09-26 18:38:44 +02:00
|
|
|
m_wizard->setDirectory(m_androidPackageSourceDir->path());
|
|
|
|
|
|
|
|
|
|
connect(m_androidPackageSourceDir, SIGNAL(pathChanged(QString)),
|
|
|
|
|
m_wizard, SLOT(setDirectory(QString)));
|
2014-09-22 16:20:51 +03:00
|
|
|
|
|
|
|
|
if (wizard->copyGradle()) {
|
|
|
|
|
QCheckBox *checkBox = new QCheckBox(this);
|
|
|
|
|
checkBox->setChecked(true);
|
|
|
|
|
connect(checkBox, &QCheckBox::toggled, wizard, &CreateAndroidManifestWizard::setCopyGradle);
|
|
|
|
|
checkBox->setText(tr("Copy the Gradle files to Android directory"));
|
|
|
|
|
checkBox->setToolTip(tr("It is highly recommended if you are plannig to extend the Java part of your Qt application."));
|
|
|
|
|
fl->addRow(checkBox);
|
|
|
|
|
}
|
2013-09-26 18:38:44 +02:00
|
|
|
}
|
|
|
|
|
|
2014-03-12 15:20:39 +01:00
|
|
|
void ChooseDirectoryPage::checkPackageSourceDir()
|
|
|
|
|
{
|
|
|
|
|
QString projectDir = QFileInfo(m_wizard->node()->path()).absolutePath();
|
|
|
|
|
QString newDir = m_androidPackageSourceDir->path();
|
|
|
|
|
bool isComplete = QFileInfo(projectDir) != QFileInfo(newDir);
|
|
|
|
|
|
|
|
|
|
m_sourceDirectoryWarning->setVisible(!isComplete);
|
|
|
|
|
m_warningIcon->setVisible(!isComplete);
|
|
|
|
|
|
|
|
|
|
if (isComplete != m_complete) {
|
|
|
|
|
m_complete = isComplete;
|
|
|
|
|
emit completeChanged();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool ChooseDirectoryPage::isComplete() const
|
|
|
|
|
{
|
|
|
|
|
return m_complete;
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-26 18:38:44 +02:00
|
|
|
//
|
|
|
|
|
// CreateAndroidManifestWizard
|
|
|
|
|
//
|
|
|
|
|
CreateAndroidManifestWizard::CreateAndroidManifestWizard(ProjectExplorer::Target *target)
|
2014-09-22 16:20:51 +03:00
|
|
|
: m_target(target), m_node(0), m_copyState(Ask)
|
2013-09-26 18:38:44 +02:00
|
|
|
{
|
2014-09-22 16:20:51 +03:00
|
|
|
setWindowTitle(tr("Create Android Template Files Wizard"));
|
2013-09-26 18:38:44 +02:00
|
|
|
|
2013-10-29 14:22:31 +01:00
|
|
|
QmakeProject *project = static_cast<QmakeProject *>(target->project());
|
|
|
|
|
QList<QmakeProFileNode *> nodes = project->applicationProFiles();
|
2014-09-22 16:20:51 +03:00
|
|
|
QtSupport::BaseQtVersion *version = QtSupport::QtKitInformation::qtVersion(target->kit());
|
|
|
|
|
m_copyGradle = version && version->qtVersion() >= QtSupport::QtVersionNumber(5, 4, 0);
|
|
|
|
|
|
2013-09-26 18:38:44 +02:00
|
|
|
if (nodes.isEmpty()) {
|
|
|
|
|
// oh uhm can't create anything
|
|
|
|
|
addPage(new NoApplicationProFilePage(this));
|
|
|
|
|
} else if (nodes.size() == 1) {
|
|
|
|
|
setNode(nodes.first());
|
|
|
|
|
addPage(new ChooseDirectoryPage(this));
|
|
|
|
|
} else {
|
|
|
|
|
addPage(new ChooseProFilePage(this, nodes));
|
|
|
|
|
addPage(new ChooseDirectoryPage(this));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-29 14:22:31 +01:00
|
|
|
QmakeProjectManager::QmakeProFileNode *CreateAndroidManifestWizard::node() const
|
2013-09-26 18:38:44 +02:00
|
|
|
{
|
|
|
|
|
return m_node;
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-29 14:22:31 +01:00
|
|
|
void CreateAndroidManifestWizard::setNode(QmakeProjectManager::QmakeProFileNode *node)
|
2013-09-26 18:38:44 +02:00
|
|
|
{
|
|
|
|
|
m_node = node;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CreateAndroidManifestWizard::setDirectory(const QString &directory)
|
|
|
|
|
{
|
|
|
|
|
m_directory = directory;
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-22 16:20:51 +03:00
|
|
|
bool CreateAndroidManifestWizard::copyGradle()
|
2013-09-26 18:38:44 +02:00
|
|
|
{
|
2014-09-22 16:20:51 +03:00
|
|
|
return m_copyGradle;
|
2014-07-21 21:55:01 +02:00
|
|
|
}
|
|
|
|
|
|
2014-09-22 16:20:51 +03:00
|
|
|
void CreateAndroidManifestWizard::setCopyGradle(bool copy)
|
2014-07-21 21:55:01 +02:00
|
|
|
{
|
2014-09-22 16:20:51 +03:00
|
|
|
m_copyGradle = copy;
|
2013-09-26 18:38:44 +02:00
|
|
|
}
|
|
|
|
|
|
2014-09-22 16:20:51 +03:00
|
|
|
bool CreateAndroidManifestWizard::copy(const QFileInfo &src, const QFileInfo &dst, QStringList * addedFiles)
|
2013-09-26 18:38:44 +02:00
|
|
|
{
|
2014-09-22 16:20:51 +03:00
|
|
|
bool copyFile = true;
|
|
|
|
|
if (dst.exists()) {
|
|
|
|
|
switch (m_copyState) {
|
|
|
|
|
case Ask:
|
|
|
|
|
{
|
|
|
|
|
int res = QMessageBox::question(this,
|
|
|
|
|
tr("Overwrite %1 file").arg(dst.fileName()),
|
|
|
|
|
tr("Overwrite existing \"%1\"?")
|
|
|
|
|
.arg(QDir(m_directory).relativeFilePath(dst.absoluteFilePath())),
|
|
|
|
|
QMessageBox::Yes | QMessageBox::YesToAll |
|
|
|
|
|
QMessageBox::No | QMessageBox::NoToAll |
|
|
|
|
|
QMessageBox::Cancel);
|
|
|
|
|
switch (res) {
|
|
|
|
|
case QMessageBox::YesToAll:
|
|
|
|
|
m_copyState = OverwriteAll;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case QMessageBox::Yes:
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case QMessageBox::NoToAll:
|
|
|
|
|
m_copyState = SkipAll;
|
|
|
|
|
copyFile = false;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case QMessageBox::No:
|
|
|
|
|
copyFile = false;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2013-09-26 18:38:44 +02:00
|
|
|
}
|
2014-09-22 16:20:51 +03:00
|
|
|
break;
|
|
|
|
|
case SkipAll:
|
|
|
|
|
copyFile = false;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
2013-09-26 18:38:44 +02:00
|
|
|
}
|
2014-09-22 16:20:51 +03:00
|
|
|
if (copyFile)
|
|
|
|
|
QFile::remove(dst.filePath());
|
2013-09-26 18:38:44 +02:00
|
|
|
}
|
|
|
|
|
|
2014-09-22 16:20:51 +03:00
|
|
|
if (!dst.absoluteDir().exists())
|
|
|
|
|
dst.absoluteDir().mkpath(dst.absolutePath());
|
2014-07-21 21:55:01 +02:00
|
|
|
|
2014-09-22 16:20:51 +03:00
|
|
|
if (copyFile && !QFile::copy(src.filePath(), dst.filePath())) {
|
2014-07-21 21:55:01 +02:00
|
|
|
QMessageBox::warning(this, tr("File Creation Error"),
|
2014-09-22 16:20:51 +03:00
|
|
|
tr("Could not copy file \"%1\" to \"%2\".")
|
|
|
|
|
.arg(src.filePath()).arg(dst.filePath()));
|
|
|
|
|
return false;
|
2014-07-21 21:55:01 +02:00
|
|
|
}
|
2014-09-22 16:20:51 +03:00
|
|
|
addedFiles->append(dst.absoluteFilePath());
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2014-07-21 21:55:01 +02:00
|
|
|
|
2014-09-22 16:20:51 +03:00
|
|
|
void CreateAndroidManifestWizard::createAndroidTemplateFiles()
|
|
|
|
|
{
|
|
|
|
|
if (m_directory.isEmpty())
|
2013-09-26 18:38:44 +02:00
|
|
|
return;
|
2014-09-22 16:20:51 +03:00
|
|
|
|
|
|
|
|
QStringList addedFiles;
|
|
|
|
|
QtSupport::BaseQtVersion *version = QtSupport::QtKitInformation::qtVersion(m_target->kit());
|
2014-11-18 18:26:08 +02:00
|
|
|
if (!version)
|
|
|
|
|
return;
|
|
|
|
|
if (version->qtVersion() < QtSupport::QtVersionNumber(5, 4, 0)) {
|
2014-09-22 16:20:51 +03:00
|
|
|
const QString src(version->qmakeProperty("QT_INSTALL_PREFIX")
|
|
|
|
|
.append(QLatin1String("/src/android/java/AndroidManifest.xml")));
|
|
|
|
|
FileUtils::copyRecursively(FileName::fromString(src),
|
|
|
|
|
FileName::fromString(m_directory + QLatin1String("/AndroidManifest.xml")),
|
|
|
|
|
0, [this, &addedFiles](QFileInfo src, QFileInfo dst, QString *){return copy(src, dst, &addedFiles);});
|
|
|
|
|
} else {
|
|
|
|
|
const QString src(version->qmakeProperty("QT_INSTALL_PREFIX")
|
|
|
|
|
.append(QLatin1String("/src/android/templates")));
|
|
|
|
|
|
|
|
|
|
FileUtils::copyRecursively(FileName::fromString(src),
|
|
|
|
|
FileName::fromString(m_directory),
|
|
|
|
|
0, [this, &addedFiles](QFileInfo src, QFileInfo dst, QString *){return copy(src, dst, &addedFiles);});
|
|
|
|
|
|
|
|
|
|
if (m_copyGradle)
|
|
|
|
|
FileUtils::copyRecursively(AndroidConfigurations::currentConfig().sdkLocation().appendPath(QLatin1String("/tools/templates/gradle/wrapper")),
|
|
|
|
|
FileName::fromString(m_directory),
|
|
|
|
|
0, [this, &addedFiles](QFileInfo src, QFileInfo dst, QString *){return copy(src, dst, &addedFiles);});
|
|
|
|
|
|
|
|
|
|
AndroidManager::updateGradleProperties(m_target);
|
2013-09-26 18:38:44 +02:00
|
|
|
}
|
2014-09-22 16:20:51 +03:00
|
|
|
m_node->addFiles(addedFiles);
|
2013-09-26 18:38:44 +02:00
|
|
|
|
2013-10-16 11:02:37 +02:00
|
|
|
if (m_node->singleVariableValue(QmakeProjectManager::AndroidPackageSourceDir).isEmpty()) {
|
2013-09-26 18:38:44 +02:00
|
|
|
// and now time for some magic
|
|
|
|
|
QString value = QLatin1String("$$PWD/")
|
2014-09-22 16:20:51 +03:00
|
|
|
+ QDir(m_target->project()->projectDirectory().toString()).relativeFilePath(m_directory);
|
2013-09-26 18:38:44 +02:00
|
|
|
bool result =
|
2014-03-07 12:56:59 +01:00
|
|
|
m_node->setProVariable(QLatin1String("ANDROID_PACKAGE_SOURCE_DIR"), QStringList(value));
|
2013-09-26 18:38:44 +02:00
|
|
|
|
2014-09-22 16:20:51 +03:00
|
|
|
if (!result) {
|
2013-09-26 18:38:44 +02:00
|
|
|
QMessageBox::warning(this, tr("Project File not Updated"),
|
|
|
|
|
tr("Could not update the .pro file %1.").arg(m_node->path()));
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-09-22 16:20:51 +03:00
|
|
|
Core::EditorManager::openEditor(m_directory + QLatin1String("/AndroidManifest.xml"));
|
2013-09-26 18:38:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CreateAndroidManifestWizard::accept()
|
|
|
|
|
{
|
2014-09-22 16:20:51 +03:00
|
|
|
createAndroidTemplateFiles();
|
2013-09-26 18:38:44 +02:00
|
|
|
Utils::Wizard::accept();
|
|
|
|
|
}
|