import QtQuick 2.9 import QtQuick.Controls 1.4 // or 2, still crashes ApplicationWindow { visible: true Text { // Replacing the Text item by Rectangle {} also make the app crash text: "hello" // Does not crash if text is not set or if we remove the Text item. } }