Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Building an App Using WebRTC AppRtc Demo

I have android WebRTC Android demo app code running with https://apprtc.appspot.com/ server.
But what i want to archive is, I want to replace the server https://apprtc.appspot.com/ with my own server, i want to also modify/remove the part of the code where it communicants with the server as my server communicates differently.

I want to keep the WebRTC related API calls as it is, and only replace the part of the source code which is communicating with the https://apprtc.appspot.com/ server.

So basically i want to know, what are the WebRTC APIs that i must call for allowing AV calls using my server, I have STUN/TURN and registration servers.

I just want to reuse the core WebRTC functionality only and write app on top of it.

Can someone please guide me on this!
Thanks in advance.

like image 528
User7723337 Avatar asked Oct 20 '22 06:10

User7723337


1 Answers

you can achive android webrtc app by two ways.. both are working perfectly..
1.
Follow this example, i have tried it and work success fully.

Only need to make one change is the link provided in this example for gclient config command is older one. Follow your link gclient config http://webrtc.googlecode.com/svn/trunk

Also make sure that you have oracle jdk-6, other version creates issues while following the steps to get the native code.

2 . You can use Frozen mountain library, which provides you variety of apis for developing webrtc app..

Hope this will help you.. check here

like image 165
Ichigo Kurosaki Avatar answered Oct 27 '22 07:10

Ichigo Kurosaki