WebRTC Integration in Xamarin

There seems to be no API / examples of how to integrate WebRTC into Xamarin . There is a third-party Frozen Mountain Software API (IceLink), but a paid license is required to use it.

Any hint on how to do this?

+6
source share
1 answer

You will need to use the native WebRTC libraries for Xamarin. If you're comfortable using precompiled libraries, you can find it online. However, I prefer to compile webrtc native for each target platform. Google has documented the steps very well, but it usually takes time.

Once you have the libraries ready for your platform, you can use it with xamarin. Let me know if you encounter any problem.

+1
source

Source: https://habr.com/ru/post/1014892/


All Articles