I am using PJSUA library to build a VOIP softphone for android. I need to send a media attribute with the SIP INVITE message as: a=rtpmap:101 telephone-event/8000
I tried setting it in SipMediaType as follows but it doesn't work.
SipMediaType sipMediaType=new SipMediaType();
sipMediaType.setType("rtpmap:101 telephone-event/8000");
sipTxOption.setMultipartContentType(sipMediaType);
Any help is appreciated. Thanks in Advance!