I am using android SIP(android.net.sip)
for VOIP
calling. Trying to send DTMF. In SipAudioCall
Class of android two method has been given
void sendDtmf(int code, Message result)
Sends a DTMF code.
void sendDtmf(int code)
Sends a DTMF code.
I am thinking to use sendDtmf(int code)
method to send DMTF. but I dont know how can I varify whether It is actually sent or not. After implementing this, I am not getting any tone at reciever/sender side. Calling to this giving me no effect (As its background processing is not visible ). Can anyone please let me know how can I varify the same? Also please explain me usage of second method sendDtmf(int code, Message result)
.