3

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!

sanjana
  • 641
  • 2
  • 15
  • 36
  • see this developers blog post... http://android-developers.blogspot.in/2010/05/be-careful-with-content-providers.html and this answer http://stackoverflow.com/questions/11786800/how-do-you-clear-your-call-logs-history-in-android – Gopal Gopi Jan 20 '14 at 05:46

1 Answers1

2

Add the following this will delete all your call logs from the phone:

getContentResolver().delete(android.provider.CallLog.Calls.CONTENT_URI, null, null) ;

then:

 <uses-permission android:name="android.permission.WRITE_CALL_LOG" /> 

to your manifest.

TheDevMan
  • 5,914
  • 12
  • 74
  • 144