Android WebRTC DataChannel binary transfer mode

懵懂的女人 提交于 2019-12-04 19:16:27

Finally found a solution !

Before, I constructed my PeerConnection with RtpDataChannels constraint to true; but to use SCTP DataChannels, you must let it to default (or set it to false), like this:

MediaConstraints pcConstraints = signalingParameters.pcConstraints;
// pcConstraints.optional.add(new KeyValuePair("RtpDataChannels", "false"));
pcConstraints.optional.add(new KeyValuePair("DtlsSrtpKeyAgreement", "true"));
pc = factory.createPeerConnection(signalingParameters.iceServers,
            pcConstraints, pcObserver);

Simple ! :-)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!