[android-developers] Re: Delete Call Log entry Exception

2010-07-21 Thread Shyam
Hi I this this code would solve your Purpose. * This class newly added by Shyam Ananthakrishnan, is meant to manipulate with the Android call log. * Author : Android Automation Team - Shyam Ananthakrishnan (shyam.ananthakrish...@lntinfotech.com) * Date : 2nd July 2010 * Purpose: ASE

[android-developers] Re: Delete Call Log entry Exception

2010-06-21 Thread Kumar Bibek
Clearly a permission issue. Only HTC can help you/ Motorola also. Thanks and Regards, Kumar Bibek http://tech-droid.blogspot.com On Jun 21, 1:11 pm, mike hasitharand...@gmail.com wrote: hi guys, i have a BroadCastReceiver which will listen to incoming calls. and once the call is finish or

[android-developers] Re: Delete Call Log entry Exception

2010-06-21 Thread mike
hi Bibek, what make you think like that it's the same application. i didn't change a single line of code. both application has same permissions. regards, MIke -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Re: Delete Call Log entry Exception

2010-06-21 Thread Kumar Bibek
Well, the content providers might have been changed by HTC or Motorola.IF they disabled the delete action from the call logs, your app cannot delete. Had it been the same manufacturers or devices, then I would have thought about some other problem. java.lang.UnsupportedOperationException:

[android-developers] Re: Delete Call Log entry Exception

2010-06-21 Thread mike
hi Bibek, which is a good point. so i decide to update the call log for the same uri. then i'm getting a null pointer exception. int x = context.getContentResolver().update(uri, null, null,null); what will be the issue?? do i have to pass values here?? regards, MIke -- You received this