Hi Felgo Team,
I found a performance regression issue which was introduced since Felgo 4 (May be on mayor version change or minor).
The following code needs 8 seconds to print my first 4 contacts:
AppPage {
readonly property var contactList : nativeUtils.contacts
Component.onCompleted: {
console.log("1", JSON.stringify(contactList[0]))
console.log("2", JSON.stringify(contactList[1]))
console.log("3", JSON.stringify(contactList[2]))
console.log("4", JSON.stringify(contactList[3]))
}
}
It seems that every new line needs additional 2 seconds. Looping over a big contact list is impossible when having much contacts.
Can you please fix this issue for us? Our customers need that.
Best regards