01-11-2013 11:23 AM
There is a little typo in https://developer.blackberry.com/cascades/document
Creating a resource file qrc-assets.qrc and adding following line in .pro file RESOURCES += assets.qrc won't work.![]()
Use RESOURCES += qrc-assets.qrc ![]()
01-11-2013 05:44 PM
Look at this thread, this was discussed already:
Bottom line, when you correct that error, assets still wont compile.
01-11-2013 10:16 PM
That's not true, I've compiled my resources and my app works.
My Device-Release build uses this.
01-12-2013 06:31 AM - edited 01-12-2013 06:44 AM
Are you sure that it uses compiled resources and not real ones? Check in you release .bar file, open it with 7zip and look are yours resources in it, or not. If they are in it then your app still use non compiled resources. If you find any .qml file inside your bar file, then your app still use uncompiled resources.
I was able to create proper .qrc file, and it was inside .bar file as it should. But there was also .qml files. As soon i removed .qml files, and left only .qrc file, app wont start. Bottom line, app is still using uncompiled resources.