Using Java in my Qt/Android project
-
I have a normal QML app that I ported to Qt/Android. Works great.
Now I want to do a bit more integration into the Android system and it looks like I need to create some Java classes to do so. I can program Java, I'll live.
Whats got me stumped is how I can compile those Java classes from my cmake based C++ project and include them into the APK which is made with the cmake target;
qt6_android_add_apk_target()
Any indication on how Qt integration there works is appreciated!
-
By accident I actually found the answer to this.
cmake creates a gradle default build file in your build dir which automatically compiles any and all Java files provided they are placed in the right subdirectory.
This completely undocumented directory is a subdirectory under your android dir (the dir where your AndroidManifest.xml goes).
So under that dir you create a 'src' dir and under that you place all your Java files.Which magically get found and compiled.
Took me 4 months to figure that out :-)
ps. it is not needed to copy any of the gradle files to your git repository, they get recreated anyway.
-
@TomZ said in Using Java in my Qt/Android project:
Any indication on how Qt integration there works is appreciated!
In the Project Section in Qt Creator, in the Build APK > Create Templates when you create a template it will make an Android folder you can add all your Java classes to expand your Application functionality and you can access all your C++ classes as objects because Qt takes the code we write in C++ and makes it accessible by making it into an object and then access it with Java from the Android app so we can also access it with ease and expand its functionality more.
Ps: this is the best way to add an Android file to your Cmake fileif(ANDROID) set(ANDROID_PACKAGE_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/android") set_property(TARGET QGuiApp PROPERTY QT_ANDROID_PACKAGE_SOURCE_DIR ${ANDROID_PACKAGE_SOURCE_DIR}) add_custom_target(cmake_android_package SOURCES ${ANDROID_PACKAGE_SOURCE_DIR}/AndroidManifest.xml ${ANDROID_PACKAGE_SOURCE_DIR}/build.gradle ${ANDROID_PACKAGE_SOURCE_DIR}/grable.properties ${ANDROID_PACKAGE_SOURCE_DIR}/res/values/libs.xml ) include(D:/Dev/Dev/android_openssl/CMakeLists.txt) endif()
-
By accident I actually found the answer to this.
cmake creates a gradle default build file in your build dir which automatically compiles any and all Java files provided they are placed in the right subdirectory.
This completely undocumented directory is a subdirectory under your android dir (the dir where your AndroidManifest.xml goes).
So under that dir you create a 'src' dir and under that you place all your Java files.Which magically get found and compiled.
Took me 4 months to figure that out :-)
ps. it is not needed to copy any of the gradle files to your git repository, they get recreated anyway.
-
T TomZ has marked this topic as solved on
-
I found a working way to solve the problem. https://scythe-studio.com/en/blog/how-to-interface-qt-with-android-java-code-2023 And also check. https://doc.qt.io/qt-6/qtcore-platform-androidnotifier-example.html