-
Bug
-
Resolution: Done
-
Not Evaluated
-
None
-
5.0.2
-
None
-
OpenSUSE 12.3
BlackBerry NDK (installer-bbndk-2.1.0-linux-1032-201209271809-201209280007.bin)
PlayBook (Real Device with latest OS version: 2.1.0.1526)
A month ago I compiled qtdeclarative from git and everything worked well.
But now this application closed immediately after tap on screen without any debug output:
import QtQuick 2.0 import QtQuick.LocalStorage 2.0 Rectangle { width: 1024 height: 600 Text { text: qsTr("Hello from QtQuick2") anchors.centerIn: parent } MouseArea { anchors.fill: parent onPressed: { var db = LocalStorage.openDatabaseSync("TESTAPP", "1.0", "DESCRIPTION", 1000000); } } }