I am developing an android app trying to clear the call logs as in below code.
Uri uri = Uri.parse("content://call_log/calls");
getContentResolver().delete(uri, null, null);
This is working on all phones but not on Galaxy nexus with Android 4.3. I am not sure where I am going wrong. Please suggest how to clear call logs in version 4.3 and above.Thanks!