Estou executando a versão LTS do Ubuntu 12.04.2 no meu sistema e também instalei o SDK do Ubuntu conforme instruído em:
Além disso, tentei desenvolver meu primeiro aplicativo como ensinado em:
Mas o problema é que, quando executo o programa, recebo apenas uma tela em branco como saída e vejo o seguinte conjunto de linhas no console depois de executar o programa:
Starting /usr/lib/i386-linux-gnu/qt5/bin/qmlscene /home/roopa/CurrencyConverter/CurrencyConverter.qml
Qt at-spi: error getting the accessibility dbus address: "The name org.a11y.Bus was not provided by any .service files"
Accessibility DBus not found. Falling back to session bus.
QOpenGLShader: could not create shader
QOpenGLShader: could not create shader
/usr/lib/i386-linux-gnu/qt5/bin/qmlscene exited with code 0
Eu não consigo entender o que é isso. Alguém por favor pode me ajudar sobre isso?
Por favor, encontre o código que tentei executar:
import QtQuick 2.0
import Ubuntu.Components 0.1
MainView {
objectName: "mainView"
applicationName: "CurrencyConverter"
id: root
width: units.gu(60)
height: units.gu(80)
property real margins: units.gu(2)
property real buttonWidth: units.gu(9)
Label {
id: title
ItemStyle.class: "title"
text: i18n.tr("Currency Converter")
height: contentHeight + root.margins
anchors {
left: parent.left
right: parent.right
top: parent.top
}
}
}