How to sync ios device contact with qt app?

I want to synchronize the contacts of an iOS device with an application on the QT platform, I am looking for an API that can do this with qt

I found a workaround (QT-JNI-Java modem) for android.

http://doc.qt.io/qt-5/qandroidjniobject.html#details

It works fine, but I did not find any bridge for ios.

Note: QT suggested the following link

https://wiki.qt.io/Category:Developing_with_Qt::QtMobility

But this is due to the Nokia Ovi store (which is no longer there), and the latest date is in 2011. The release link is dead.

If you come across any workaround for ios-qt, ask you to suggest me. Thanks in advance.

+4
source share
1 answer

You can use the V-Play API for a cross-platform phone contact solution on iOS and Android.

These are the APIs:

https://v-play.net/doc/nativeutils/#getContacts-method

https://v-play.net/doc/nativeutils/#storeContacts-method

+1
source

Source: https://habr.com/ru/post/1679108/


All Articles