GitXplorerGitXplorer
r

WebRTC

public
83 stars
14 forks
3 issues

Commits

List of commits on branch main.
Unverified
41b9aa1de8e9528921b73b9a0b65b05642ad1a5b

Bump WebRTC to version 123

rrno committed 10 months ago
Unverified
12fc172873725f2f2b2c304fba33b08738e8baec

Bump WebRTC to version 122

rrno committed a year ago
Unverified
140fac509bf80c5ddccf49e63f591679948862cc

Bump WebRTC to version 121

rrno committed a year ago
Unverified
adf9712912cbb0c22931de03c1ce7366658f2c85

Bump WebRTC to version 120

rrno committed a year ago
Unverified
7b569a5fb187a95be5ca9eb9b52cf7d7270b8cbf

Bump WebRTC to version 119

rrno committed a year ago
Unverified
2c950712814d9218d99ce51857886b40c15f6ba3

Bump WebRTC to version 118

rrno committed a year ago

README

The README file for this repository.

WebRTC Binaries for Android

Latest version Release Date Total Downloads Maven Central

This repository contains unofficial distribution of WebRTC framework binaries for Android. This is heavily inspired by the work for providing WebRTC binaries for iOS and MacOS.

Since version M80, Google has deprecated their mobile binary libraries distributions (Was officially using the JCenter). To get the most up to date WebRTC library, you can compile it on your own, or you can use precompiled binaries from here or other sources.

📦 Releases

The binary releases correspond with official Chromium releases and branches as specified in the Chromium dashboard.

💡 Things to know

All binaries in this repository are compiled from the official WebRTC source code without any modifications to the source code or to the output binaries.

📢 Requirements

  • minSdkVersion = 21

📀 Binaries included

  • arm64-v8a
  • armeabi-v7a
  • x86
  • x86_64

🚚 Installation

Maven

The latest release is available on Maven Central

Gradle Groovy DSL

implementation 'com.dafruits:webrtc:123.0.0'

Gradle Kotlin DSL

implementation("com.dafruits:webrtc:123.0.0")

Manual

  1. Download the AAR from the releases section.
  2. Copy the AAR file into a libs folder inside your app folder.
  3. Include the following line in the dependencies section of your build.gradle.kts file
implementation(files("libs/libwebrtc-123.0.0.aar"))

Proguard

-keep class org.webrtc.** { *; }

🛠 Compile your own WebRTC AAR

If you wish to compile your own WebRTC AAR, please refer to the following official guide: https://webrtc.googlesource.com/src/+/refs/heads/main/docs/native-code/android/

📃 License