Android
Qt for Android enables you to run Qt 5 applications on devices with Android v2.3.3 (API level 10) or later. Here is a list of supported items:
- Qt Widgets and QML applications
- QML media player functionality in Qt Multimedia
- A set of commonly used sensors with Qt Sensors
- Deploying your application to a device from Qt Creator
Getting Started
In order to use Qt for Android, you will need the following external tools:
- The Android SDK Tools
- The Android NDK
- Apache Ant v1.8 or later
- OpenJDK v6 or later
- Android Debug Bridge (ADB) driver on the Windows platform to enable USB debugging. The default USB driver on Windows does not allow debugging. You can download the ADB driver from the device manufacturer's support website. For example, the ADB driver for Google Nexus 7 can be downloaded from http://support.asus.com.
After installing the driver, try running a few basic adb commands and check whether your device responds to it.
Note: You must set the JAVA_HOME environment variable to the JDK install directory path so that Qt Creator finds the binaries required to build your application.
After installing these tools, update the Android SDK to get the API and tools packages required for development. You can update the SDK using the android tool that comes with the SDK Tools package. For example, on Ubuntu the following command starts the Android SDK Manager, which enables you to select the packages you want to install:
./android update sdk
After the SDK is updated, install the Qt 5.1 binaries using the Qt installation program and configure Qt Creator to develop for Android. For more information, see Qt Creator: Connecting Android Devices.
Note: You must select at least one of the two Qt libraries for Android (x86 and ARMv7) from the Qt 5.1.0 component tree in the Select Components page of Qt installation program. By default, Qt libraries for ARMv7 are selected.
Test your setup by running one of the desktop examples. You can list all the examples tested for Android using the android keyword in the search field under the Examples tab in Qt Creator Welcome mode.
Porting an Existing Qt Application
Most Qt applications should be portable to Android with ease, unless they depend on a specific hardware or software feature not supported by Android. If your application is not using any such feature, deployment is probably the only step that demands some changes to your application.
Like most UI applications, Qt applications also depend on resources such as images, icons, translation files, and so on. These resources must be made available on the device as they are required for the application to function effectively.
The most convenient option is to bundle the resources into a qrc file, which gets built into the application binary. This approach reduces the porting effort considerably and provides faster access to the resources. It is also a cross-platform approach, which makes porting to other platforms easier.
By default, all Qt applications can access the contents of a qrc file using the ":/" prefix or the URL scheme prefix, "qrc:". To know more about qrc files and how they are handled, see the Qt Resource System.
The other approach is to deploy the resources into the package's assets directory. It is the best option if you want to achieve better interoperability with the Android APIs. You can access all resources in the directory using the "assets:" prefix. Unlike qrc, this approach is not a cross-platform solution.
The following step-by-step instructions guide you to port an existing Qt Quick application to Android using the qrc approach:
- Open the existing project in Qt Creator v2.7.1 or later, and configure it with "Android for ARM" kit. For more information, see Qt Creator: Configuring Projects
- Update all local directory imports in the qml files to use a local namespace. For example, to import the QML documents in the "contents" directory relative to main.qml, use the following import statement:
import "contents" as Contents
- Identify all the resources used by your application and add them to one or more qrc files. Qt Creator updates your qmake project file with the "RESOURCES" variable listing the qrc files you added.
- To load or refer to the resources in the qrc file from a C++ file, use the "qrc:" prefix with the URL. For example, to load the main.qml file from resources.qrc, you can use the following code in your main function:
QQuickView viewer; viewer.setSource(QUrl("qrc:qml/main.qml")); viewer.show();
Note: QML documents can refer to the contents in qrc files using the relative path to the document. Such references do not require the "qrc:" or ":/" prefix.
- Update the "Run" settings for your project as described in the Qt Creator: Specifying Run Settings
Note: You can change the default settings for application icons and identifier.
- If your application uses imports or plugins which depend on special Qt modules, these Qt modules should be added to the .pro file. For example, if your app uses the Qt Multimedia import in QML, you should add the following to your .pro file:
QT += multimedia
- Save the changes to your project and run the application.
Qt Creator deploys your application on the Android device, if the device is detected by the PC. Otherwise, it tries to run the application on an AVD (Android Virtual Device). You will be prompted to create one if there are no AVDs found.