I am working on android app which can make missed call on other phone of particular duration like 5, 10 seconds, I am struck once call is made through a program to a particular number my program loose control, how I can end after some fixed no. of seconds after call is made, the general purpose SDK only allow to initiate call not for abortion.
I am new to android and done a deep search on net about this some folks refer using JAVA reflection and internal telephony for this but I wasn't able to do it, although I have done this on Symbian s-60 platform.
Any Suggestion?
use
telephony.aidl
interface it consist method namedendCall()
which is used to terminate on going callstart timer in onReceive() method of broad cast receiver when your call is in
Ringing
state or inoff-hook
stateuse endCall() method in that timer
Let me know if you need more things from me
Requires