Qt for Android Prerequisites
To develop applications for Android using Qt, you need to set up your development environment with the necessary tools and dependencies. This page provides step-by-step instructions to help you get started.
Android development prerequisites
To develop with Qt for Android, you will need the following prerequisites:
- Java Development Kit (JDK)
- Android Command Line Tools which includes:
- Android NDK: for building C++ code.
- Android SDK Platform and Android SDK Build Tools: for building Android apps.
- Android SDK Platform Tools: for deploying and managing Android dependencies.
Installing the prerequisites
Using Qt Creator's Android development setup
The easiest way to manage the dependencies is by using Qt Creator's built-in Android development setup. When you first open Qt Creator after installing Qt for Android, you are asked if you want to run the Android setup wizard. This also sets up OpenSSL for Android.
Using an existing SDK location
If you already have an Android SDK setup, you don't need to run this wizard. Instead, in Qt Creator go to Preferences > Devices > Android and browse to your existing JDK and SDK paths. See common Android SDK paths. For more information, see Qt Creator: Set up Android development environment.
Manually Installing the Prerequisites
If you prefer to manually install the prerequisites, follow these next steps.
- Install the Java Development Kit (JDK).
Qt for Android development requires JDK 21 or above, provided by any of the following supported distributions:
Install your preferred JDK. If your installer doesn't set the
JAVA_HOMEenvironment variable that points to the location of the installed JDK, you can set it manually. For example on Linux:sudo apt-get install openjdk-21-jdk export JAVA_HOME=/usr/lib/jvm/java-21-openjdk-amd64Or on macOS:
brew install openjdk@21 sudo ln -sfn "$(brew --prefix openjdk@21)/libexec/openjdk.jdk" \ "/Library/Java/JavaVirtualMachines/openjdk-21.jdk" export JAVA_HOME="$(/usr/libexec/java_home -v 21)" - Install the Android SDK Command Line Tools. Download the latest version of the Android SDK Command Line Tools for your operating system and extract it to the appropriate path as stated below.
The Android SDK is commonly installed by Qt Creator or Android Studio in the following locations:
- Linux: ~/Android/Sdk/
- macOS: ~/Library/Android/sdk/
- Windows: C:\Users\<USER>\AppData\Local\Android\Sdk\
Or use your OS's package manager, for example for macOS:
brew install android-commandlinetools - Install the Android SDK Platform, Build Tools, and Platform Tools.
Make sure to install the SDK Platform, Platform Tools, and Build Tools. For Qt 6.12, use:
sdkmanager "platform-tools" "platforms;android-36" "build-tools;36.0.0" - Install the Android NDK.
Qt 6.12 uses NDK 27.2.12479018, you can install it by running:
sdkmanager "ndk;27.2.12479018" - (Optional) Install the Android Emulator.
If you wish to use the Android Emulator, you can install it by running:
sdkmanager "emulator" - Platform Specific Configurations
- For Windows, you need to install the additional USB driver provided by the extras Android SDK package. Install it by running the following:
sdkmanager.bat "extras;google;usb_driver" - For Linux, the following dependencies are needed for using tools such as
adborgdbwhich can be used by Qt Creator:sudo apt-get install libstdc++6 libncurses5Note: Hardware acceleration is required for acceptable Android emulator performance. Without it, the emulator uses software CPU emulation, which runs extremely slowly. See Android: Emulator Acceleration for more information.
- For Windows, you need to install the additional USB driver provided by the extras Android SDK package. Install it by running the following:
Testing the Setup
After you have installed and configured the prerequisites, you can test your development setup by running the examples shipped with the Qt installation. For more information, see Mobile Examples.
© 2026 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.