"QtQuick module not installed" (Android porting)

I am trying to port my application to android using qt5.4, but I have this error:

W / Qt (30916): qrc: /qml/FrontEnd.qml: 1 ((null)): qrc: /qml/FrontEnd.qml: 1: 1: the "QtQuick" module is not installed

This is my .pro

TEMPLATE = app
TARGET = sandbox-build-android

QT+= qml quick widgets printsupport xml svg

INCLUDEPATH += [...]# my include path

# Input
HEADERS += [...] # my include
SOURCES += [...] # my source

RESOURCES += ../sandbox/resources.qrc

LIBS += -L$$PWD/../../edalab/else-datamodel-classes/build-buildAndroid-Android_for_armeabi_v7a_GCC_4_9_Qt_5_4_0-Debug/ -lbuildAndroid

INCLUDEPATH += [...]
DEPENDPATH += [...]

contains(ANDROID_TARGET_ARCH,armeabi-v7a) {
    ANDROID_EXTRA_LIBS = [..]
}

# Default rules for deployment.
include(deployment.pri)

This is my .pri deployment:

android-no-sdk {
    target.path = /data/user/qt
    export(target.path)
    INSTALLS += target
} else:android {
    x86 {
        target.path = /libs/x86
    } else: armeabi-v7a {
        target.path = /libs/armeabi-v7a
    } else {
        target.path = /libs/armeabi
    }
    export(target.path)
    INSTALLS += target
} else:unix {
    isEmpty(target.path) {
        qnx {
            target.path = /tmp/$${TARGET}/bin
        } else {
            target.path = /opt/$${TARGET}/bin
        }
        export(target.path)
    }
    INSTALLS += target
}

export(INSTALLS)

In my FrontEnd.qml, I have this import:

import QtQuick 2.4
import QtQuick.Controls 1.3

I do not see a significant difference from the .pro sample project that works correctly on Android.

UPDATE

I saw another Calendar example, and I noticed that this OTHER_FILES flag was missing, so I added all the paths of my QML files to it, but the problem persists.

apk , . , apk , apk, :

libqml_Qt_labs_folderlistmodel_libqmlfolderlistmodelplugin.so libqml_Qt_labs_settings_libqmlsettingsplugin.so libqml_QtQml_Models.2_libmodelsplugin.so libqml_QtQml_StateMachine_libqtqmlstatemachine.so libqml_QtQuick.2_libqtquick2plugin.so libqml_QtQuick_Controls_libqtquickcontrolsplugin.so libqml_QtQuick_Controls_Styles_Android_libqtquickcontrolsandroidstyleplugin.so libqml_QtQuick_Dialogs_libdialogplugin.so libqml_QtQuick_Dialogs_Private_libdialogsprivateplugin.so libqml_QtQuick_Layouts_libqquicklayoutsplugin.so libqml_QtQuick_Window.2_libwindowplugin.so

.
β”œβ”€β”€ Project1
β”‚   β”œβ”€β”€ file.pro
β”‚   β”œβ”€β”€ images
β”‚   β”‚   β”œβ”€β”€ ...
β”‚   β”œβ”€β”€ include
β”‚   β”‚   β”œβ”€β”€ sub1
β”‚   β”‚   β”‚   β”œβ”€β”€ file1.hh
β”‚   β”‚   β”‚   └── sub1.1
β”‚   β”‚   β”‚       └── file2.hh
β”‚   β”‚   └── sub2
β”‚   β”‚       └── file3.hh
β”‚   β”œβ”€β”€ qml
β”‚   β”‚   β”œβ”€β”€ file1.qml
β”‚   β”‚   └── sub1
β”‚   β”‚       β”œβ”€β”€ file2.qml
β”‚   β”‚       └── sub1.1
β”‚   β”‚           └── file3.qml
β”‚   β”œβ”€β”€ README.txt
β”‚   β”œβ”€β”€ resources.qrc
β”‚   β”œβ”€β”€ src
β”‚   β”‚   β”œβ”€β”€ sub1
β”‚   β”‚   β”‚   β”œβ”€β”€ file1.cc
β”‚   β”‚   β”‚   └── sub1.1
β”‚   β”‚   β”‚       └── file2.cc
β”‚   β”‚   β”œβ”€β”€ sub2
β”‚   β”‚   β”‚   └── file3.cc
β”‚   β”‚   └── Main.cc
β”‚   └── webUtils
β”‚       └── file.html
0
1

.pro. . :

.
β”œβ”€β”€ Project
β”‚   β”œβ”€β”€ app.pro
|   β”œβ”€β”€ android
|   β”‚   β”œβ”€β”€ res
|   |   β”‚   β”œβ”€β”€ drawable-hdpi
|   |   |   └── ... 
|   |   β”œβ”€β”€ AndroidManifest 
β”‚   β”œβ”€β”€ content
β”‚   β”‚   β”œβ”€β”€ file1.qml
β”‚   β”‚   └── ...
|   β”œβ”€β”€ icons
β”‚   β”œβ”€β”€ images
β”‚   β”‚   β”œβ”€β”€ ...
|   β”œβ”€β”€ include
β”‚   β”‚   β”œβ”€β”€ sub1
β”‚   β”‚   β”‚   β”œβ”€β”€ file1.hh
β”‚   β”‚   β”‚   └── sub1.1
β”‚   β”‚   β”‚       └── file2.hh
β”‚   β”‚   └── sub2
β”‚   β”‚       └── file3.hh  
|   β”œβ”€β”€ ios
|   |   └── Info.plist
|   β”œβ”€β”€ libs 
|   |   β”œβ”€β”€ droid
|   |   β”œβ”€β”€ ios
|   |   β”œβ”€β”€ macx  
|   |   β”œβ”€β”€ nix
|   |   β”œβ”€β”€ win
|   |   └── winphone
β”‚   β”œβ”€β”€ Qml.qrc
|   β”œβ”€β”€ Resources.qrc 
|   β”œβ”€β”€ SubProject
|   β”œβ”€β”€ translations
|   |   β”œβ”€β”€ app_en.qm
|   |   β”œβ”€β”€ ...
β”‚   β”œβ”€β”€ [.cpp]
|   β”œβ”€β”€ [.h]
|   β”œβ”€β”€ app_en.ts

src, QML content. QML, .. Qml.qrc. (aka .ts files) . (aka .qm) translations.

android ios , , res , Android. android dir APK (. .pro). ios .

lib .

:

TEMPLATE = app
macx:CONFIG += app_bundle

# QT IMPORT
QT += gui qml quick [...]

#include subproject
include(SubProject/subproject.pri)
# Default rules for deployment
include(deployment.pri)
# Compilation flags [specific to the different OSs]
include(flags.pri)

TARGET = "appName"  # just needed for me since I change target between "App" and "AppPRO"

INCLUDEPATH += [...]
    $$PWD/include/sub1 \
    $$PWD/include/sub2 

!isEmpty(QMAKE_LFLAGS_RPATH):LIBS += \
$$QMAKE_LFLAGS_RPATH$${TOP_BUILD_DIR}/lib  #(UNIX ONLY): libs linked preferibly at runtime

# DESKTOP PLATFORMS
win32:CONFIG(release, debug|release): LIBS += -L$$PWD/lib/win/ -lLIBNAME1
else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/lib/win/ -lLIBNAMEd
unix:!macx:!ios:!android: LIBS  += -L$$PWD/lib/nix -lLIBNAME
macx: LIBS += -L$$PWD/lib/macx/ -lLIBNAME

# MOBILE PLATFORMS
ios: LIBS += -L$$PWD/lib/ios -lLIBNAME
android: LIBS  += -L$$PWD/lib/droid -lLIBNAME
winphone: LIBS +=  -L$$PWD/lib/winphone/ -lLIBNAME
# ADDITIONAL ANDROID SETTING
ANDROID_EXTRA_LIBS = $$PWD/lib/droid/libLIBNAME.so

# SOURCE FILES (.CPP)
SOURCES += [.cpp]

# HEADER FILES (.H)
HEADERS += [.h]

# objective-c++ sources for ios platform 
ios {
    QT += gui_private
    #QT -= printsupport
    HEADERS += [.h]
    OBJECTIVE_SOURCES += [.mm]
}

# QML sources are added here!
RESOURCES += Resources.qrc \
    Qml.qrc


# ANDROID ADDITION
android {
    ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android          # contains the dir structure of the APK, actually it contains just res
    OTHER_FILES += androidPro/AndroidManifest.xml       # <--- manifest for the Pro version
}



####  ICONS SECTION   ####
win32:RC_ICONS += $$ICON_PATH/multiIcon.ico   # ICONS for WIN
mac:!ios:ICON = $$ICON_PATH/icons.icns      # ICONS for MAC

#IOS BUNDLE                                 # ICONS for IOS
ios {
    BUNDLE_DATA.files = [...]
    QMAKE_BUNDLE_DATA += BUNDLE_DATA

QMAKE_INFO_PLIST = $$PWD/ios/Info.plist
}

# list QML sources for linguist purposes
lupdate_only{
SOURCES = *.qml \
          *.js \
          content/*.qml \
          content/*.js
}

# and the .ts file for translation!
TRANSLATIONS = app_en.ts \
               app_fr.ts \
               app_de.ts \
               app_sp.ts \
               app_en.ts

manifest. Qt Creator . (Qt Creator 3.3), , Projects > Build > Build Android APK > Create Templates.

<?xml version="1.0"?>
<manifest android:versionCode="21" android:installLocation="auto" package="JAVA_PACKAGE" android:versionName="1.0.12" xmlns:android="http://schemas.android.com/apk/res/android">
    <application android:hardwareAccelerated="true" android:label="@string/app_name" android:name="org.qtproject.qt5.android.bindings.QtApplication" android:icon="@drawable/icon">
        <activity android:screenOrientation="unspecified" android:label="@string/app_name" android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|locale|fontScale|keyboard|keyboardHidden|navigation" android:name="org.qtproject.qt5.android.bindings.QtActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>
                <category android:name="android.intent.category.LAUNCHER"/>
            </intent-filter>
            <meta-data android:value="app" android:name="android.app.lib_name"/>
            <meta-data android:resource="@array/qt_sources" android:name="android.app.qt_sources_resource_id"/>
            <meta-data android:value="default" android:name="android.app.repository"/>
            <meta-data android:resource="@array/qt_libs" android:name="android.app.qt_libs_resource_id"/>
            <meta-data android:resource="@array/bundled_libs" android:name="android.app.bundled_libs_resource_id"/>
            <!-- Deploy Qt libs as part of package -->
            <meta-data android:value="-- %%BUNDLE_LOCAL_QT_LIBS%% --" android:name="android.app.bundle_local_qt_libs"/>
            <meta-data android:resource="@array/bundled_in_lib" android:name="android.app.bundled_in_lib_resource_id"/>
            <meta-data android:resource="@array/bundled_in_assets" android:name="android.app.bundled_in_assets_resource_id"/>
            <!-- Run with local libs -->
            <meta-data android:value="-- %%USE_LOCAL_QT_LIBS%% --" android:name="android.app.use_local_qt_libs"/>
            <meta-data android:value="/data/local/tmp/qt/" android:name="android.app.libs_prefix"/>
            <meta-data android:value="-- %%INSERT_LOCAL_LIBS%% --" android:name="android.app.load_local_libs"/>
            <meta-data android:value="-- %%INSERT_LOCAL_JARS%% --" android:name="android.app.load_local_jars"/>
            <meta-data android:value="-- %%INSERT_INIT_CLASSES%% --" android:name="android.app.static_init_classes"/>
            <!--  Messages maps -->
            <meta-data android:value="@string/ministro_not_found_msg" android:name="android.app.ministro_not_found_msg"/>
            <meta-data android:value="@string/ministro_needed_msg" android:name="android.app.ministro_needed_msg"/>
            <meta-data android:value="@string/fatal_error_msg" android:name="android.app.fatal_error_msg"/>
            <!--  Messages maps -->
            <!-- Splash screen -->
            <meta-data android:resource="@drawable/splash" android:name="android.app.splash_screen_drawable"/>
            <!-- Splash screen -->
        </activity>
    </application>
    <uses-sdk android:targetSdkVersion="19" android:minSdkVersion="9"/>
    <supports-screens android:normalScreens="true" android:smallScreens="true" android:xlargeScreens="true" android:largeScreens="true" android:anyDensity="true"/>
    <!-- %%INSERT_PERMISSIONS -->
    <!-- %%INSERT_FEATURES -->
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
    <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
    <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE"/>
    <uses-permission android:name="android.permission.CHANGE_WIFI_STATE"/>
    <uses-permission android:name="android.permission.INTERNET"/>
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
</manifest>
+2

Source: https://habr.com/ru/post/1608962/


All Articles