wtekiela / opensub4j

Java library for communicating with opensubtitles.org XML-RPC API
Other
48 stars 19 forks source link

failing to resolve 0.2.0-SNAPSHOT in android studio #7

Closed devnullpointer closed 6 years ago

devnullpointer commented 6 years ago

Adding dependency as directed in ReadMe and getting a failed to resolve error.

Error:(42, 13) Failed to resolve: com.github.wtekiela:opensub4j:0.2.0-SNAPSHOT

wtekiela commented 6 years ago

My bad, forgot to add the snapshot repository definition to the README, will update it shortly.

Try the following repository definitions:

repositories {
    maven {
        url 'https://oss.sonatype.org/content/repositories/snapshots/'
    }
    mavenCentral()
}

dependencies {
    compile 'com.github.wtekiela:opensub4j:0.2.0-SNAPSHOT'
}
wtekiela commented 6 years ago

@devnullpointer should you still have trouble after adding the snapshot repository definition, please reopen this issue.