Ubuntu Touch Qt3D 2.0 trava na inicialização

Ubuntu Touch Qt3D 2.0 trava na inicialização

Estou tentando desenvolver algo em QML3D e, embora meu aplicativo esteja funcionando bem no desktop, não consigo fazê-lo funcionar no meu tablet (até pensei, por exemplo, no cilindro Qt3D do centro de software -https://github.com/Sturmflut/ubuntu-touch-qt3d-cylinder- está funcionando muito bem).

Cheguei ao aplicativo mais fácil, com apenas a janela de visualização vazia, mas ainda trava no meu tablet. Aqui está o código:

import QtQuick 2.0
import Qt3D 2.0
import Ubuntu.Components 1.1

/*!
    \brief MainView with a Label and Button elements.
*/

MainView {
    // objectName for functional testing purposes (autopilot-qt5)
    objectName: "mainView"

    // Note! applicationName needs to match the "name" field of the click manifest
    applicationName: "com.ubuntu.developer.zubozrout.3d-car"

    /*
     This property enables the application to change orientation
     when the device is rotated. The default is false.
    */
    automaticOrientation: true

    // Removes the old toolbar and enables new features of the new header.
    useDeprecatedToolbar: false

    width: units.gu(100)
    height: units.gu(75)

    Page {
        title: i18n.tr("Simple")

        Viewport {
            id: viewport
            width: 100
            height: 100
            fillColor: "#8bd"
        }
    }
}

Alguém tem alguma ideia de por que ele trava, por favor? Cada vez que tento executá-lo no meu tablet, uma tela preta de carregamento aparece e me leva de volta à tela inicial. Muito obrigado pela sua ajuda.

Responder1

QML3D não é mais desenvolvido e, portanto, não é suportado pelo Ubuntu Touch.

informação relacionada