I have a problem when I end the outgoing call, in the other side still ringing, I'm using this code to End the Call:
public void EndBtn(View view) {
try {
call.endCall();
} catch (SipException se) {
}
call.close();
}
I'm using SIP protocol to develop my application, How can I end the ringing from the other side?