-
Bug
-
Resolution: Done
-
P1: Critical
-
1.1.0
-
d9fca820
Even a trivial camera element QML application created with vanilla Qt SDK 1.1TP crashes every time when trying to run on an N8.
The crash message is:
Process 839, thread 840 stopped at 0x7d74808c: A data abort exception has occurred.
The memory address seems to be the same every time.
The QML code is:
import QtQuick 1.0 import QtMultimediaKit 1.1 Camera {}
In the .pro file, the following settings are activated:
CONFIG += mobility MOBILITY += multimedia
main.cpp is as follows:
#include <QtGui/QApplication> #include "qmlapplicationviewer.h" int main(int argc, char *argv[]) { QApplication app(argc, argv); QmlApplicationViewer viewer; viewer.setOrientation(QmlApplicationViewer::ScreenOrientationLockLandscape); viewer.setMainQmlFile(QLatin1String("qml/untitled/main.qml")); viewer.showExpanded(); return app.exec(); }
- relates to
-
QTMOBILITY-1438 QML Camera element causes crash on Symbian when loaded via qmlviewer
-
- Closed
-