I cannot get android contacts using v-play nativeUtils. Is there something wrong with this code?
App {
AppListView {
anchors.fill: parent
model:nativeUtils.getContacts()
delegate:SimpleRow {
text: modelData.name
detailText: modelData.phoneNumber
}
}
}