summaryrefslogtreecommitdiff
path: root/doc/src/platforms/platform-notes-android.qdoc
diff options
context:
space:
mode:
authorVenu <venugopal.shivashankar@digia.com>2013-11-13 17:18:49 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-11-15 18:58:14 +0100
commited1226d1120974d58666fd3f2ca080c660f34d9f (patch)
tree9ae3bbcdbde0804dbb319b112f96fc260bc5f62b /doc/src/platforms/platform-notes-android.qdoc
parent4d742e6271773489edcf5e2f421bc765d2c99e28 (diff)
downloadqtdoc-ed1226d1120974d58666fd3f2ca080c660f34d9f.tar.gz
Doc: Reorganized information in smaller topics
The getting started page had grown bigger so it was necessary to break it up into smaller chunks for easier maintenance in the future. Besides reorganizing existing information, added a section about publishing to Google Play, and fixed a few language and linking issues. Task-number: QTBUG-33580 Change-Id: Ic84dfb171b09c394e0bde977e7909b234e82775f Reviewed-by: Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@digia.com> Reviewed-by: Jerome Pasion <jerome.pasion@digia.com> Reviewed-by: Leena Miettinen <riitta-leena.miettinen@digia.com>
Diffstat (limited to 'doc/src/platforms/platform-notes-android.qdoc')
-rw-r--r--doc/src/platforms/platform-notes-android.qdoc24
1 files changed, 13 insertions, 11 deletions
diff --git a/doc/src/platforms/platform-notes-android.qdoc b/doc/src/platforms/platform-notes-android.qdoc
index 3cb5b0b3..011a1a2e 100644
--- a/doc/src/platforms/platform-notes-android.qdoc
+++ b/doc/src/platforms/platform-notes-android.qdoc
@@ -42,17 +42,18 @@
The easiest way to develop with Qt for Android is to use
\l{http://qt-project.org/doc/qtcreator/creator-developing-android.html}{Qt Creator}. When you apply
a \b{Qt for Android Kit} to a Qt Creator project, it will create and maintain a set of files which
- are required to make your app run on Android.
+ are required to make your application run on Android.
The files added to your project are:
\list
- \li Java files which serve as the entry point into your app and which will automatically load Qt
- and execute the native code in your app
- \li AndroidManifest.xml which provides meta-information about your app
- \li Other XML files detailing the dependencies of your app
+ \li \e .java files will serve as the entry point into your application and
+ automatically load Qt to execute the native code in your application
+ \li \e AndroidManifest.xml which provides meta-information about your
+ application
+ \li Other XML files detailing the dependencies of your application
\li Resource files
- \li Depending on the deployment method selected in Qt Creator, additional files like libraries
- and QML files can be included in the project.
+ \li Depending on the deployment method selected in Qt Creator, additional
+ files like libraries and QML files can be included in the project.
\endlist
Qt Creator adds these files in a subdirectory of your project called \b android. The contents of
@@ -60,10 +61,11 @@
\section1 Application Package
- On Android, apps are distributed in packages called APK. Qt Creator will manage building the
- APK for you, but if you for some reason want to do this manually, you must first make sure
- that the appropriate packaging and build files are in place. As mentioned, Qt Creator will
- place these files in the \b android subfolder in your project.
+ On Android, apps are distributed in packages called \e APK. Qt Creator
+ builds the \e APK for you, but if you for some reason want to do this
+ manually, you must first make sure that the appropriate packaging and build
+ files are in place. For more detailed information about how the packaging
+ is done, see \l{Deploying an Application on Android}.
\section1 Deployment