Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WebRTC native java/ android

Tags:

java

webrtc

I am able to build the libjingle library and also build the AppRTCDemo App on Android. I am able to connect to peers and share audio and video successfully. Now I want to extend it to send data (say Text "HelloWorld"). I want to integrate DataChannel into it so that I can also send data through it.

I have few questions:

  1. Is it possible to use DataChannel with native webrtc? I mean what I am trying to do is it supported ?
  2. Is there any sample application or example that could solve this problem for me ?

Looking forwards for you support!

like image 586
Vijet Badigannavar Avatar asked Nov 08 '13 04:11

Vijet Badigannavar


1 Answers

  1. Yes it is supported. For more info about the exact interfaces take a look at

    <libjingle-src>/talk/app/webrtc/java/src/org/webrtc/PeerConnection.java <libjingle-src>/talk/app/webrtc/java/src/org/webrtc/DataChannel.java

  2. As far as I know there isn't any examples

like image 110
Svetlin Mladenov Avatar answered Oct 02 '22 03:10

Svetlin Mladenov