matrix-org / matrix-android-sdk

The Matrix SDK for Android - DEPRECATED
Apache License 2.0
371 stars 132 forks source link

Build Fail (Could not find com.facebook.react:react-native-webrtc:1.69.2-jitsi-2062090) #509

Open wefyns opened 5 years ago

wefyns commented 5 years ago

Could not find com.facebook.react:react-native-webrtc:1.69.2-jitsi-2062090. Searched in the following locations:

IgorBRLK commented 4 years ago

Had the same issue looking at the source I noticed the maven url

// Jitsi repo
        maven {
            url "https://github.com/vector-im/jitsi_libre_maven/raw/master/releases"
        }

That repo has the missing dependency so I added it to my projects gradle.build and now its resolving properly.

Though a proper update/solution or information on what I am missing would be appreciated.

yelsane commented 4 years ago

Got this issue for v1.0.6. Just used what was on element-android's build.gradle:

       maven {
            url "https://github.com/vector-im/jitsi_libre_maven/raw/master/android-sdk-2.9.3"
            // Note: to test Jitsi release you can use a local file like this:
            // url "file:///Users/bmarty/workspaces/jitsi_libre_maven/android-sdk-2.9.3"
        }

Worked fine after that.