libwebrtc android

General

Category
Free
Tag
WebRTC
License
N/A
Min SDK
14 (Android 4.0–4.0.2 Ice Cream Sandwich)
Registered
Apr 8, 2019
Favorites
0
Link
https://github.com/abdularis/libwebrtc-android
See also
AndroidRTC
TokBox
WebRTC Signaling API

Additional

Language
N/A
Version
m83 (Sep 30, 2020)
Created
Apr 2, 2019
Updated
Dec 4, 2021 (Retired)
Owner
Aris (abdularis)
Contributor
Aris (abdularis)
1
Activity
Badge
Generate
Download
Source code

Android WebRTC Library

Integrate Into Android Project

Add repository in the root gradle file:

...
allprojects {
    repositories {
        ...
        maven {
            url 'https://raw.github.com/abdularis/libwebrtc-android/repo/'
        }
    }
}

Add dependency to your app module (such as app/build.gradle), latest availabe stable version in this repo is M83:

dependencies {
    implementation 'com.aar.app:google-webrtc:M83'
}

Description

This is precompiled google webrtc library for android, https://webrtc.org/. repo branch

read this article on how to compile webrtc for android.

Use maven to add .aar library into the existing maven repository using:

mvn install:install-file -Dfile=./google-webrtc-M74.aar -DgroupId=com.aar.app -DartifactId=google-webrtc -Dversion=M74 -Dpackaging=aar -DlocalRepositoryPath=./libwebrtc-android -DcreateChecksum=true