On a React-Native mobile app, I need to access the contacts list, which is stored on the mobile device. The following 2 libraries provide this functionality. However, it seems that none of them provides information about which contacts have been updated (added/deleted/changed) recently.
Is there any library, which (1) provides some sort of notifications, which my app can subscribe to, to get updates about the contacts' list, or (2) provide a timestamp for when each contact was last updated?
I looked into the following libabries, but they do not seem to have this functionality.
- Expo Contacts (https://docs.expo.io/versions/v35.0.0/sdk/contacts/)
- React-Native-Contacts (https://github.com/rt2zz/react-native-contacts)
Your feedback is highly appreciated...