Android on Win8.1 - QtSystems Addon Compilation
-
Hey guys,
I'm trying to compile the QtSystems addon on Windows for Android devices, but I run into some compilation problems.
"https://gitorious.org/qt/qtsystems
":https://gitorious.org/qt/qtsystemsCan anyone provide a working compilation step-by-step for it?
Thanks in advance,
- d
-
Hi,
Your link contains 3 different modules: Qt Publish and Subscribe, Qt Service Framework, and Qt System Info. There is no Qt Systems module.
Which one do you want? What do you plan to do?
Note that none of these modules have been released, and they are not being actively developed. They have not been ported to Android either.
-
Hi,
Like I already told you in this "thread":http://qt-project.org/forums/viewthread/45353/ there's not yet a backend for android. Look at the source.pro file line number 4
@!android: !ios: !blackberry {@
This means that it won't compile anything for neither android, iOS or blackberry. And if you look closer at the source code, there's no backend yet for these platforms.
For the time being, you'll have to use native API to retrieve this information. A quick search returns e.g. "this":http://stackoverflow.com/questions/1972381/how-to-programmatically-get-the-devices-imei-esn-in-android
-
According to "here":http://qt-project.org/forums/viewthread/45353/#186620 it should work fine on Android
-
[quote author="dominik.fehr" date="1406791992"]According to "here":http://qt-project.org/forums/viewthread/45353/#186620 it should work fine on Android[/quote]I don't think that post is accurate. See SGaist's previous post -- the build system will skip everything if the target platform is Android, iOS, or BlackBerry.
Anyway, you can try for yourself if you want. Just load src.pro with in Qt Creator and choose your Android kit. Then, build it like a regular project.