'Force to sync contacts from sim card

I am inserting contact to sim card programmatically.

final Uri uri = Uri.parse("content://icc/adn");
ContentValues mContentValue = new ContentValues();
mContentValue.put("tag", contactName);
mContentValue.put("number", contactNumber);
getContentResolver().insert(uri, mContentValue);

But the contact appear only after phone restart/long delay or enable/disable sim manually. Is there a way to force sync the contacts?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source