[android-developers] Re: how to accept a phone call programmitically

2012-05-18 Thread Pent
Use the below code in the same package as specified and save as * ITelephony.aidl* That's the method I had been using, but the needed permissions aren't granted for most of the functions anymore.   // Simulate a press of the headset button to pick up the I'll give that a go, thanks. Pent --

[android-developers] Re: how to accept a phone call programmitically

2012-05-17 Thread Pent
okay friends, I got it. Its working now. Any tips ? As far as I know that API needs a permission these days. Pent -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To

[android-developers] Re: how to accept a phone call programmitically

2012-05-17 Thread Pent
As far as I know that API needs a permission these days. Sorry, I meant 'needs a permission which isn't granted'. Pent -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Re: how to accept a phone call programmitically

2012-05-17 Thread saran vonteddu
Dear Pent, Now I'm able to accept the call programmatically without user interaction. We can do dat in two ways. One way by implementing ITelephony.aidl. Use the below code in the same package as specified and save as * ITelephony.aidl* * * package com.android.internal.telephony;

[android-developers] Re: how to accept a phone call programmitically

2012-05-16 Thread saran vonteddu
okay friends, I got it. Its working now. regards Saran On Tue, May 15, 2012 at 6:10 PM, saran vonteddu saran.myw...@gmail.comwrote: Dear *, In my application I want to accept phone call without any user interaction. In order to achieve that I tried using iTelephony.aidl, as