ReactiveX / RxAndroid

RxJava bindings for Android

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ERROR: Failed to resolve: io.reactivex.rxjava3:rxandroid:3.0.0-SNAPSHOT

yehuijifeng opened this issue · comments

implementation 'io.reactivex.rxjava3:rxandroid:3.0.0-SNAPSHOT'

ERROR: Failed to resolve: io.reactivex.rxjava3:rxandroid:3.0.0-SNAPSHOT

Did you add the snapshot repository?

commented

this isn't working for me.. I'll add it to the Readme after you help me ;)

buildscript {
    repositories {
        google()
        jcenter()
        maven {
            url "https://oss.jfrog.org/libs-snapshot/io/reactivex/rxjava3/rxandroid/"
        }
    }
}

Do it one level up:

buildscript {
    // ...
}

repositories {
    google()
    jcenter()
    maven {
        url "https://oss.jfrog.org/libs-snapshot"
    }
}

Edit: fixed the link.

Do it one level up:

buildscript {
    // ...
}

repositories {
    google()
    jcenter()
    maven {
        url "https://oss.jfrog.org/libs-snapshot/io/reactivex/rxjava3/rxandroid/"
    }
}

Still not working for me !

Right, try removing the /io/reactivex/rxjava3/rxandroid/ part.

commented

Excellent, thank you for helping!! is this location good too? it seems to work.

allprojects {
    repositories {
        google()
        jcenter()
        maven { url "https://oss.jfrog.org/libs-snapshot" }
    }
}

PS. put this in the project build.gradle (root build.gradle)

Right, try removing the /io/reactivex/rxjava3/rxandroid/ part.

Thanks a lot, it works now