great news! Trolltech is working on merging both current Qt SDKs namely Qt SDK based on Qt 4.7 and Nokia Qt SDK. They are both including different features such as the deployment of application targeting Maemo or Symbian^3 for the Nokia Qt SDK, etc. Anyway, this is a great news!
Furthermore, the Qt Mobility framework has been finally included, which means: it is now possible to work with multimedia within QML. I really have to take a look at this one. ;)
You can read more about this here.
Enjoy!
EDIT:
Your attention please, I just installed the Qt SDK, full version. I imported the "First Tutorial" project but it didn't work. Here is the solution:
If you previously created your application with a version of QtCreator which generates a .qmlproject with
import QmlProject 1.1You just need to downgrade this import to 1.0. Furthermore, since the version changes, the mainFile option is not available anymore. Please comment it out.
In your .qml files, do not worry about changing this:
import QtQuick 1.0This still runs and do not impact the application (as far as I can tell). Only old QtCreator version do not support this import, if it's the case, change it to:
import Qt 4.7