User:Joger: Difference between revisions
(Added my setup for Android development) |
No edit summary |
||
Line 15: | Line 15: | ||
# Select Android NDK 26.1.10909125 and make default | # Select Android NDK 26.1.10909125 and make default | ||
# Oppenssl location: <code>C:\dev\android\android_openssl</code> | # Oppenssl location: <code>C:\dev\android\android_openssl</code> | ||
# Verify Android settings: [[File:Android settings 26.png]] | # Verify Android settings: | ||
[[File:Android settings 26.png]] | |||
# Add Android device for ABI x86_64, OS Version 13.0 ("Tiramisu") (SDK 33) | # Add Android device for ABI x86_64, OS Version 13.0 ("Tiramisu") (SDK 33) | ||
[[File:Android Emulator.png]] | |||
== Building Qt for Android on Windows == | == Building Qt for Android on Windows == |
Revision as of 18:29, 11 February 2024
My build setup
OS: Windows 11 with dev drive mounted on D:
Qt source tree: <code>D:\qt\qt6\</code>
Build directory containing all builds: <code>D:\qt\build\</code>
Host build for dev branch: <code>D:\qt\build\dev\</code>
Setting up Qt Creator for Android
- Install Qt Creator with Android option
- In Creator preferences, install Adoptium JDK (<code>C:\Program Files\Eclipse Adoptium\jdk-17.0.10.7-hotspot)</code>
- Android SDK location: <code>C:\dev\android</code>
- Select Android NDK 26.1.10909125 and make default
- Oppenssl location: <code>C:\dev\android\android_openssl</code>
- Verify Android settings:
- Add Android device for ABI x86_64, OS Version 13.0 ("Tiramisu") (SDK 33)
Building Qt for Android on Windows
Main build root Android: <code>D:\qt\build\android</code>
Configure Qt for Android in build root using host build
<code>cmake -DQT_BUILD_SUBMODULES=QtMultimedia -DQT_HOST_PATH=D:/qt/build/dev/qtbase -DQT_BUILD_TESTS_BY_DEFAULT=OFF -DQT_BUILD_TESTS=ON -DANDROID_PLATFORM=android-33 -DQT_USE_TARGET_ANDROID_BUILD_DIR=TRUE -DQT_QMAKE_TARGET_MKSPEC=android-clang -DANDROID_SDK_ROOT=C:/dev/android -DANDROID_NDK_ROOT=C:/dev/android/ndk/26.1.10909125 -DANDROID_ABI=x86_64 -DQT_BUILD_EXAMPLES=FALSE -DCMAKE_BUILD_TYPE=Debug -DINPUT_developer_build=yes --fresh -G Ninja D:/qt/qt6 & ninja</code>
Main build directory for Qt Multimedia on Android: <code>D:\qt\build\androidmultimedia</code> Configure Qt Multimedia for Android
<code>cmake-DCMAKE_TOOLCHAIN_FILE=D:\qt\build\android\qtbase\lib\cmake\qt6\qt.toolchain.cmake -G Ninja -DQT_USE_ORIGINAL_COMPILER=ON -DQT_BUILD_TESTS=ON -DQT_BUILD_TESTS_BY_DEFAULT=OFF D:/qt/qt6/qtmultimedia & ninja</code>
Importing Qt Multimedia build into QtCreator
- Open QtMultimedia CMakeLists.txt from <code>D:\qt\qt6\qtmultimedia</code>
- Deselect all kits
- Import build from <code>D:\qt\build\androidmultimedia</code>
- This creates a Android Qt 6.8.0 (android) Clang x86_64 kit
- Configure is run automatically again
- Select a test to be built (tst_qmediadevices) and choose a corresponding emulator in project build settings for Android kit
- Build target tst_qmediadevices
- Observe error message:
<code>19:15:12: The process "C:\Program Files\CMake\bin\cmake.exe" exited normally.</code>
<code>19:15:12: Starting: "D:\qt\build\dev\qtbase\bin\androiddeployqt.exe" --input D:/qt/build/androidmultimedia/tests/auto/unit/multimedia/qmediadevices/android-tst_qmediadevices-deployment-settings.json --output D:/qt/build/androidmultimedia/tests/auto/unit/multimedia/qmediadevices/android-build --android-platform android-33 --jdk "C:/Program Files/Eclipse Adoptium/jdk-17.0.10.7-hotspot" --gradle</code>
<code>Cannot find application binary in build dir D:/qt/build/androidmultimedia/tests/auto/unit/multimedia/qmediadevices/android-build//libs/x86_64/libtst_qmediadevices_x86_64.so.</code>
<code>19:15:12: The process "D:\qt\build\dev\qtbase\bin\androiddeployqt.exe" exited with code 2.</code>
<code>Error while building/deploying project QtMultimedia (kit: Android Qt 6.8.0 (android) Clang x86_64)</code>
<code>When executing step "Build Android APK"</code>
<code>19:15:12: Elapsed time: 01:05.</code>