my apps use custom components module (a fully qml and javascript
package). I have on Windows this package distribute in the root folder
of my apps (appfolder\Qt\labs\components\custom\..)
I don't know how to add this folder in the package to deploy to device :
I have tryed INSTALLS+ ,deployments, ... but nothing works
the probiem is that is a qml module (qmldir +js + qml .. no C++) and I
call it in my application in several folders level with import
Qt.labs.components.custom 1.0 . regarding qt lists it seems it's not
possible to embed qml module in qrc.
If there is no automatic deployement method, is there a way to manually
copy files in the folder tree use to create the apk ?
The (only?) way to go is to package your qml/js into a resource file. You can then access them via a "qrc:/" url.
[1] http://techbase.kde.org/Development/Tutorials/Necessitas
Cheers,
BogDan.
2011/11/12 qtnext <qtn...@gmail.com>:
Check http://groups.google.com/group/android-qt/browse_thread/thread/34cabebac26c80aa/568affe51bd766b8
and http://techbase.kde.org/Development/Tutorials/Necessitas .
Cheers,
BogDan.
2011/11/23 Koying <cb...@semperpax.com>: