I can successfully create a contact with
const { contactId } = await Contacts.createContact({ contact: contactData });
How do I open the contact with the default contact app?
After researching for hours, the best I achieved is
AppLauncher.openUrl({
url: 'com.google.android.contacts',
});
This opens the contact app on android but not the contact itself.
A dedicated function to open the new created contact would be nice. Something like this:
Contacts.openContact(contactId);