I'm using webrtc android. After some version upload on play store, it's a while the play store shows me an error:
Vulnerable WebRTC Versions: Your app uses a bad version of WebRTC, which contains security vulnerabilities.
Here is the version that I'm using org.webrtc:google-webrtc:1.0.32006
.
Are there any updates on this library?
If not, please suggest me an alternative for the Android native WebRTC library.
This has helped me: Link to a working webRTC library for Android. So I've changed my import to com.dafruits:webrtc:113.0.0
and did some migrations. The main changes were turning addStream
to addTrack
and observing it in onAddTrack
instead of onAddStream
.