Half
Half

Reputation: 107

How to use WebRTC on Unity in order to build Android and iOS

I have to build a WebRTC app on Android and iOS, i don't have iOS programming skills, but i work a lot with Unity.

How can I use WebRTC with Unity ? I don't want to build a WebGL project.

I thought about a c# wrapper of lib WebRTC, but maybe it's already existing ? Is there any troubleshooting doing that ?

What i thought about would be to develop most of the UI and all with Unity and add a (native) Video WebRTC layout on it (not the best, but it could work i guess).

That's kind of tricky, but it could save me a lot of time

Thanks for any help :D

Upvotes: 0

Views: 3368

Answers (1)

Jakob Pålsson
Jakob Pålsson

Reputation: 307

If you don't have to work with Unity i would recommend taking a look at Cordova which is a development framework for cross platform apps using HTML5, JavaScript and CSS3. Also worth looking at is Ionic which is a "HTML5 Hybrid Mobile App Framework" that builds apps using Cordova.

The reason i recommend these frameworks is because they shorten the development time for cross platform apps and have great support for WebRTC. Here is a guide that explains how to use WebRTC together with Ionic and here is the WebRTC plugin for Cordova.

Upvotes: 3

Related Questions