I am working on some Qt/QML app which will be deployed to Android OS. Now, I need module androidextras but if I put androidextras inside my .pro file as follows
QT += qml quick widgets sql core bluetooth printsupport androidextras
and I rerun qmake, I get following error:
Project ERROR: Unknown module(s) in QT: androidextras
I also tried to open and run the example project Qt Notifier but the same error occurs so that I cannot build either my app or the example, which should have worked out of the box.
I am using KUbuntu 15.04 with gcc version 4.9.2 (Ubuntu 4.9.2-10ubuntu13) compiler and Desktop Qt 5.5.0 GCC 64bit Qt version. How do I build this androidextras module?
I have Android arm v7 kit installed as you can see from the Maintenance Tool screenshot:
I've recompiled whole Qt with clear && ./configure -opensource -confirm-license -verbose -cups -plugin-sql-mysql -android-sdk /opt/android-sdk-linux -android-ndk /opt/android-ndk-r10d && make && make install, set up
Qt version and Qt Kit in QtCreator, changed build kit and still same error pops up. Why?
