I have integrated AppRTC in my project and I am able to join the WebRTC call in the room of https://apprtc.appspot.com using RoomName
appClient = ARDAppClient(delegate: self)
appClient?.createLocalMediaStream()
appClient?.connectToRoomWithId(String(roomId), options: nil)
I am able to hardcode a RoomName in my app and install the app in two devices A & B and if I make a call from both the devices at same time in A & B then I am able to successfully have a WebRTC call between them.
Now I'd like to do a real VOIP call that is make a call from my app in device A and receive the call at my app in device B.
AFAIK I have to do SIGNALING part right here to connect to the app in device B from device A.
Any help is highly appreciated !