views:

34

answers:

1

Can you import and commit multiple PIM contacts collectively? Currently we are importing and committing each contact individually, which results in the user having to authorise each contact.

This is our code:

PIMItem[] pi = instance.fromSerialFormat(inputStream, "UTF8");
Contact contact = contactList.importContact((Contact) pi[0]);
contact.commit();

Does anyone know how to do this?

+1  A: 

You probably want to sign your application so the user gets the option to accept contact updates just once.

QuickRecipesOnSymbianOS
Yeah. All sorted now.
S0rin