Hello<br>I&#39;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&#39;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 &#39;s/QtQuick 1.1/QtQuick 1.0/g&#39; *.qml<br>But when I try to launch it I get<br>qmlviewer didn&#39;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 &#39;s/QtQuick 1.0/Qt 4.7/g&#39; *.qml<br>but then the import QtQuick 1.0 crashed in the Components.<br><br>Here&#39;s the error message:<br>file:///home/user/tmp/qml/main.qml:1:1: plugin cannot be loaded for module &quot;QtQuick&quot;: 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&#39;t get the QtQuick crash if I omit the -I, but then it can&#39;t find the components module.<br><br>I use import com.meego 1.0 btw.<br>