I have code to delete the contact group with the contact group id like this and is also working...
ContentValues values = new ContentValues();
values.put(ContactsContract.Groups._ID, 4444);
getContentResolver().delete(ContactsContract.Groups.CONTENT_URI,values.toString(),null);
but I want to perform this deletion at the time of un-installation of the application in Android device.So what I have to do or which function can be used at uninstalling time?
So can you suggest me something?