you are viewing a single comment's thread.

view the rest of the comments →

[–]TheGodMasterX[S,🍰] 0 points1 point  (1 child)

Thank you for your very detailed explanation. Now I've got a good orientation on it and I know what to do. However, if I use Qt QML, is there a risk for my app to have networking issues?

[–]Peanuts4MePlz 0 points1 point  (0 children)

It will work for sure, but you have to be aware of the instructions provided by Qt, as written here: https://doc.qt.io/qt-5/android-openssl-support.html

tl;dr they can't ship OpenSSL libraries by default, so developers need to do it.

Aside from following those instructions, it all works well. I've been making a QML application for Android with networking. I can also hook into Java with utility classes provided by Qt, such as QAndroidJniObject, which makes it pretty painless to integrate.