ssseasonnn / RxDownload

A multi-threaded download tool written with RxJava and Kotlin
Apache License 2.0
4.14k stars 612 forks source link

ERROR: Failed to resolve: com.squareup.retrofit2:retrofit:2.7.0-SNAPSHOT #277

Closed yushilong closed 5 years ago

yushilong commented 5 years ago
implementation 'com.github.ssseasonnn.RxDownload:rxdownload4:1.0.0'

allprojects { repositories { google() jcenter() maven { url "https://jitpack.io" } } }

ssseasonnn commented 5 years ago

add this:

maven {
     url 'https://oss.sonatype.org/content/repositories/snapshots/'
}
magamal commented 5 years ago

I have the issue and I added the maven as below .but it doesn't fix anything

allprojects {
    repositories {
        google()
        jcenter()
        maven { url 'https://jitpack.io' }
        maven {
            url 'https://oss.sonatype.org/content/repositories/snapshots/'
        }
    }
}