- 
    
Bug
 - 
    Resolution: Fixed
 - 
    
P1: Critical
 - 
    5.13.1
 
import QtQuick 2.13 import QtQuick.Window 2.13 import QtQuick.Controls 1.4 Window { visible: true width: 640 height: 480 title: qsTr("Hello World") id: eDash ComboBox { width: 100 height: 50 model: languageModel } ListModel { id: languageModel ListElement { text: "1"; } ListElement { text: "2"; } } }
This code with combobox works good on Win, Mac, iOs, Android Arm v7, but not working on Android arm64-v8a.
It was very hard to find, why combobox stop working, because i debug with Android Arm v7 profile, but phone download Android arm64-v8a from play market.