Hi..
I am facing problems with running this code:


import QtQuick 1.0
import QtMultimediaKit 1.1

Text {
text: "Click Me!";
font.pointSize: 24;
width: 150; height: 50;

Audio {
id: playMusic
source: "music.wav"
}
MouseArea {
id: playArea
anchors.fill: parent
onPressed: { playMusic.play() }
}
}

The problem is:
The sound plays in the device..
When run in the simulator, it says:
defaultServiceProvider::requestService(): no service found for - "com.nokia.qt.mediaplayer"
When run in desktop, it says:
module "QtMultimediaKit" is not installed
import QtMultimediaKit 1.1
^

Note that I have installed QtMobility and QtMultimediaKit and have included these two lines in the .pro file:
CONFIG += mobility
MOBILITY += multimedia