Hello<br>I'm trying to get a QtQuick app I made for Harmattan to work on N900 with qmlviewer, and ran into some trouble.<br><br>I've done the following:<br> apt-get install qt-components qt-components-base-icons qtquickcompat<br>
then this where I have the qml files:<br> sed -i 's/QtQuick 1.1/QtQuick 1.0/g' *.qml<br>But when I try to launch it I get<br>qmlviewer didn't find the components directly, but with <br>-I /usr/lib/qt4/imports/ it finds them.<br>
But the import QtQuick 1.0 however crashed.<br>so I did<br> sed -i 's/QtQuick 1.0/Qt 4.7/g' *.qml<br>but then the import QtQuick 1.0 crashed in the Components.<br><br>Here's the error message:<br>file:///home/user/tmp/qml/main.qml:1:1: plugin cannot be loaded for module "QtQuick": Cannot load library /usr/lib/qt4/imports/QtQuick/libQtQuickCompat.so: (/usr/lib/qt4/imports/QtQuick/libQtQuickCompat.so: undefined symbol: _ZNK21QDeclarativeListModel4dataEiRK5QListIiE) <br>
import QtQuick 1.0 <br> ^ <br><br>I don't get the QtQuick crash if I omit the -I, but then it can't find the components module.<br><br>I use import com.meego 1.0 btw.<br>