Reputation: 1675
I am searching for a way to develop an android app to make a point-to-point VoIP call between two Android devices without having any intermediate server (SIP server).devices have access to internet. Is this possible?
Upvotes: 2
Views: 1776
Reputation: 2721
Making P2P call is not relevant to any platform. There are protocols for that which you implement with any language you want. There are several protocols for that. Currently ICE protocol is the best option available.
Also note that 100% P2P is not possible. For some scenario your call will be established through relay server.
This answer explains how to make a P2P connection.
Upvotes: 1