Qt5ForAndroidBuilding: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
(Redirect to Android. All the content here is available there.)
 
(13 intermediate revisions by 7 users not shown)
Line 1: Line 1:
This page has a lot of overlap with [[Android|another page]] ''[qt.io]'' about building Qt for Android.
#REDIRECT [[Android]]
 
Note: These are build instructions for building Qt for Android on Linux or Mac OS X. For cross-compiling on Windows, this is currently [[building qt-android on windows|possible under cmd.exe]].
 
For general information about Qt 5 for Android, please visit the [[Qt5ForAndroid|wiki]] for that.
 
=Building Qt 5 for Android=
 
These are the current build instructions to get to the point where you can deploy a Qt app to an Android device using Qt Creator.
 
'''<span class="caps">NOTE</span>:''' Shadow builds are currently broken.
 
1. First of all you need an Android <span class="caps">SDK</span>.
 
* You can get the official <span class="caps">SDK</span> from Google.
* Run the android tool found at &lt;path/to/sdk&gt;/tools/android
* Install <span class="caps">API</span> levels 10, 11, 16 and 18.
** Android <span class="caps">API</span> level 11 is required to build QtMultimedia.
** Android <span class="caps">API</span> level 18 is required to build QtBluetooth (from Qt 5.5 onwards).
** Android <span class="caps">API</span> level 11 and 16 are required for QtBase.
** Note that this is only necessary for building Qt itself. You can build Qt applications against any <span class="caps">API</span> level you wish, As long as it is equal to or higher than 13.
 
2. You also need an Android <span class="caps">NDK</span>: https://developer.android.com/tools/sdk/ndk/index.html
 
3. Get Qt Creator 2.7.2 (or later): http://qt.io/download#qt-creator
 
4. Get Qt 5:
 
* git clone git://gitorious.org/qt/qt5.git qt5
 
* cd qt5
 
* perl init-repository
 
5. Configure Environment Variables You need to set up environment variables for the following:
 
* $JAVA_HOME (e.g /usr/lib/jvm/java-6-openjdk-i386) You need a <span class="caps">JDK</span> (version 1.6+, required 32bit) and you should also have this in your <span class="caps">PATH</span>.
* $ANDROID_SDK_ROOT pointing to the <span class="caps">SDK</span>
 
6. Configure Qt and skip unsupported modules:
 
* ./configure -xplatform android-g++ -nomake tests -nomake examples -android-ndk &lt;path/to/ndk&gt; -android-sdk &lt;path/to/sdk&gt; -android-ndk-host &lt;e.g. linux-x86_64&gt; -android-toolchain-version &lt;e.g. 4.8&gt; -skip qttranslations -skip qtwebkit -skip qtserialport -skip qtwebkit-examples -no-warnings-are-errors
 
7. Build. Then you can run:
 
* make
 
8. Start the Qt Creator you built earlier.
 
9. Go into Tools -&gt; Options -&gt; Android and set the right paths to the Android <span class="caps">SDK</span> and <span class="caps">NDK</span>, etc. For example:
 
* Android <span class="caps">SDK</span> Location: /home/johnsmith/dev/android-sdk-linux
* Android <span class="caps">NDK</span> Location: /home/johnsmith/dev/android-ndk-r8e
* <span class="caps">JDK</span> Location: /usr/lib/jvm/java-6-openjdk-i386
 
10. Add your newly built Qt version to Options -&gt; Build &amp; Run -&gt; Qt Versions.
 
11. At this point you should be able to create a project and configure it for the Android kit. In order to test, go into the “Run” settings for your project. Under “Deploy Configuration”, check the “Use Qt libraries from local device” option. Also select the “Deploy local Qt libraries” radio button.
 
12. Now you should be able to connect a device and hit the “Run” button on your project to run it on the device.

Latest revision as of 14:26, 21 March 2016

Redirect to: