Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 853 Bytes

File metadata and controls

32 lines (23 loc) · 853 Bytes

android

WebRTC pre-compiled library for android.

How to use

This library is hosted on Maven Central. To include this library in your project:

  dependencies {
    implementation 'io.github.webrtc-sdk:android:144.7559.04'
  }

We also offer a shadowed version that moves the org.webrtc package to livekit.org.webrtc, avoiding any collisions with other WebRTC libraries:

  dependencies {
    implementation 'io.github.webrtc-sdk:android-prefixed:144.7559.04'
  }

A stripped-down variant of the prefixed library (removing software video codecs and optimized for size instead of speed) is also available:

  dependencies {
    implementation 'io.github.webrtc-sdk:android-prefixed-stripped:144.7559.04'
  }