How to fix "Failed to resolve: org.webrtc:google-webrtc"?

6.3k Views Asked by At

I build an android webrtc app but when adding webrtc to the android studio project (implementation 'org.webrtc:google-webrtc:1.0.+'), I get this error : Failed to resolve: org.webrtc:google-webrtc

How to add webrtc to an android app ?

6

There are 6 best solutions below

1
On BEST ANSWER

Currently it seems we are forced to keep jcenter, a deprecated repository, to install this package. Jcenter remain readonly and is not removed for now.

For production you could considere making your own build.

// root build.gradle
allprojects {
    repositories {
        jcenter()

you can check this issue from twillio

1
On

//In the settings.gradle file

dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
    google()
    mavenCentral()
    //add jcenter()
    jcenter()
}

}

0
On
allprojects {
        repositories {
            ..
            maven { url "https://raw.githubusercontent.com/alexgreench/google-webrtc/master" }
        }
 }

 dependencies {
     ..
     implementation 'org.webrtc:google-webrtc:1.0.30039@aar'
 }

Temporary solution :)

0
On

//Android => App => build.gradle

repositories {
    jcenter()
}

dependencies {
    
}
0
On

Try it with on maven central. I think this is the latest build based on the published date.

https://mvnrepository.com/artifact/org.webrtc/google-webrtc/1.0.32006

In app build.gradle:

implementation 'org.webrtc:google-webrtc:1.0.32006'

In project build.gradle:

repositories {
    google()
    mavenCentral()
}
0
On

Just take the step:

implementation 'org.webrtc:google-webrtc:1.0+'

and Replace in code:

implementation 'org.webrtc:google-webrtc:1.0.32006'