Develop for android java issues
-
wrote on 13 Oct 2020, 15:56 last edited by
@Phips04 said in Develop for android java issues:
Do you mean the *.pro file?
No, the Android manifest ==> AndroidManifest.xml
Double click on it in QtCreator to start the editor:
-
wrote on 13 Oct 2020, 18:46 last edited by
-
This is how it actually looks like, the option to set the sdk is disabled.
I made sure, that the sdk's I want to use are installed. (Sry I'm new to qt) -
wrote on 14 Oct 2020, 15:03 last edited by
Java and android settings are ok, in the android settings there is no "ndk-bundle". But the second entry exists, as I mentioned OpenSSL is not set
-
Java and android settings are ok, in the android settings there is no "ndk-bundle". But the second entry exists, as I mentioned OpenSSL is not set
wrote on 14 Oct 2020, 15:37 last edited by@Phips04 said in Develop for android java issues:
in the android settings there is no "ndk-bundle"
This is your problem, ndk-bundle is mandatory for Qt!
Extract from the Qt documentation:
Use the sdkmanager command line tool to update the packages list and then install the essential packages:cd <ANDROID_SDK_ROOT>/tools/bin/ ./sdkmanager --update ./sdkmanager --install "platform-tools" "platforms;android-29" "build-tools;29.0.2" "ndk-bundle"
-
wrote on 14 Oct 2020, 17:51 last edited by
-
Ok, I did it, but the cmd line reported some errors, and there was no effect in qt creator.
wrote on 14 Oct 2020, 20:44 last edited by@Phips04 This seems to be a well know issue with Android:
- https://stackoverflow.com/questions/60730615/sdkmanager-warning-could-not-create-setting-java-lang-illegalargumentexcepti
- https://medium.com/@s89707192/if-you-have-the-issue-652c7c1ad5d0
You can try:
cd <ANDROID_SDK_ROOT>\tools\bin\ sdkmanager --sdk_root="<ANDROID_SDK_ROOT>" --update sdkmanager --sdk_root="<ANDROID_SDK_ROOT>" --install "platform-tools" "platforms;android-29" "build-tools;29.0.2" "ndk-bundle"
-
wrote on 15 Oct 2020, 06:35 last edited by
It worked this way, the bundle is installed now, but I still can't change the minimal android version
-
It worked this way, the bundle is installed now, but I still can't change the minimal android version
@Phips04 do it by hand than, open the android manifest.xml in a text editor
and change the version there
-
wrote on 15 Oct 2020, 07:36 last edited by
The .xml can be evaluated and I set the entries. Min sdk is 21 (android 5) and target is 27 (android 8.1). The error still is the same
-
It worked this way, the bundle is installed now, but I still can't change the minimal android version
wrote on 15 Oct 2020, 07:41 last edited by@Phips04 said in Develop for android java issues:
It worked this way, the bundle is installed now, but I still can't change the minimal android version
What do you mean with "you can't"? Is the dropdown combobox grayed out or is the list empty?
Do you have restart Qt Creator after updating SDK root? -
wrote on 15 Oct 2020, 07:48 last edited by
Yes the combobox was grayed (I set the entries in the xml file via text editor, now I can edit the boxes) and I restarted Qt creator.
-
Yes the combobox was grayed (I set the entries in the xml file via text editor, now I can edit the boxes) and I restarted Qt creator.
-
wrote on 15 Oct 2020, 08:49 last edited by
I meant qt Creator says Java settings are ok.
I didn't remember that version 8 is the recommended one, installed 15.
I will replace it by 8 now -
I meant qt Creator says Java settings are ok.
I didn't remember that version 8 is the recommended one, installed 15.
I will replace it by 8 nowwrote on 15 Oct 2020, 09:05 last edited by KroMignon@Phips04 said in Develop for android java issues:
I didn't remember that version 8 is the recommended one, installed 15.
Yes, it is no clearly defined ==> https://doc.qt.io/qt-5/android-building.html.
JDK 8, still recommended for best compatibility, but starting with Qt 5.15 JDK 11 could be used.Side note: if you search on internet
java.lang.NoClassDefFoundError: Could not initialize class org.codehaus.groovy.vmplugin.v7.Java7
, all matches you will found will clearly detail the issue. The gradle version is not compatible with the selected JDK.
For Qt 5.15, the used gradle version is 5.6.4 (just check in<QT_DIR>/5.15.0/android/src/3rdparty/gradle/gradle/wrapper/gradle-wrapper.properties
) -
wrote on 15 Oct 2020, 15:20 last edited by
Ok, now finally it works. This is my very basic UI for testing
This is the sourcecode:
import QtQuick 2.15
import QtQuick.Window 2.15Window {
Rectangle {
id: rectangle
color: "#09a4cc"
anchors.fill: parentRectangle { id: rectangle1 x: 220 y: 117 width: 200 height: 200 color: "#4facfe" radius: height / 2 gradient: Gradient { GradientStop { position: 0 color: "#4facfe" } GradientStop { position: 1 color: "#00f2fe" } } } }
}
What it shows is simply a white screen.๐
-
Ok, now finally it works. This is my very basic UI for testing
This is the sourcecode:
import QtQuick 2.15
import QtQuick.Window 2.15Window {
Rectangle {
id: rectangle
color: "#09a4cc"
anchors.fill: parentRectangle { id: rectangle1 x: 220 y: 117 width: 200 height: 200 color: "#4facfe" radius: height / 2 gradient: Gradient { GradientStop { position: 0 color: "#4facfe" } GradientStop { position: 1 color: "#00f2fe" } } } }
}
What it shows is simply a white screen.๐
wrote on 15 Oct 2020, 15:46 last edited by@Phips04 I think you have to set property
visible
totrue
of topWindow
:import QtQuick 2.15 import QtQuick.Window 2.15 Window { visible: true // ==> default value is false! Rectangle { id: rectangle color: "#09a4cc" anchors.fill: parent ... } }
-
wrote on 15 Oct 2020, 18:52 last edited by Phips04
Ok, QT creator does not recongnize the property, but it compiles, and now it works the way it should,
thanks for your help๐ -
Ok, QT creator does not recongnize the property, but it compiles, and now it works the way it should,
thanks for your help๐
19/28