Qt Android .qrc file images and other ressources
Solved
Mobile and Embedded
-
Hi, i have an app that was running on Symbian and now i like to port it to android.
the app has about 600 images (70Mb) (eBOOK)
I like to know what is the best way to include all the images in the .APK without adding the images to the .QRC file
and how i can access the images from the QML filesmy files :
main.ccp#include <QGuiApplication> #include <QQmlApplicationEngine> int main(int argc, char *argv[]) { QGuiApplication app(argc, argv); QQmlApplicationEngine engine; engine.load(QUrl(QStringLiteral("qrc:/main.qml"))); return app.exec(); }
Ressources
--qml.qrc
----/
------content/myjs.js
------nain.qml
------pages.qml
------splash.qmland the images are in the folder content/imgs/pages/*.jpg
Thank you.
-
-
You're welcome !
Happy coding :)