HI All, I want to create some QtQuick Apps for my Symbian device, but i can't bring them to run. i am getting below error: *:: error: No rule to make target `\NokiaQtSDK\Symbian\SDK\epoc32\release\armv5\LIB\QtDeclarative.dso', needed by `\NokiaQtSDK\Symbian\SDK\epoc32\release\gcce\udeb\animationpr1.exe'. Stop.*
I have Qt Creator 2.1 installed & new version of Qt libs 4.7.1 for Symbian devices. When I make a new QtQuick Application and import a qml file to the Project, i can run the program in the Simulator, but not on Nokia N8. *main.cpp code:* #include <QtGui/QApplication> #include "mainwindow.h" #include <QApplication> #include <QDeclarativeView> int main(int argc, char *argv[]) { //![0] QApplication app(argc, argv); QDeclarativeView view; view.setSource(QUrl::fromLocalFile("color-animation.qml")); view.show(); return app.exec(); //![2] } *.pro file code:* QT += core gui QT += declarative TARGET = animationpr1 TEMPLATE = app SOURCES += main.cpp\ mainwindow.cpp HEADERS += mainwindow.h FORMS += mainwindow.ui CONFIG += mobility MOBILITY = symbian { TARGET.UID3 = 0xe29e1a1a # TARGET.CAPABILITY += TARGET.EPOCSTACKSIZE = 0x14000 TARGET.EPOCHEAPSIZE = 0x020000 0x800000 } Please let me know whether I am doing anything wrong. **
_______________________________________________ Qt-qml mailing list Qt-qml@qt.nokia.com http://lists.qt.nokia.com/mailman/listinfo/qt-qml