Tim Nuwin
Tim Nuwin

Reputation: 2887

Failed to resolve after bintray upload and jcenter link

I uploaded a library to bintray and got approved for it to be linked with jcenter() but when I try to include the dependency:

compile 'com.dinomitesoft.owlorbit.owlorbitsdk:owlorbit-sdk:1.0.0'

It says "Failed to resolve".. Here is what my repositories looks like currently:

repositories {
    jcenter()
}

If I include the bintray repository it's able to compile fine e.g.:

repositories {
    maven {
        url 'https://dl.bintray.com/owlorbit-llc/Owlorbit/'
    }
}

What am I doing wrong? Do I need to setup a Sonatype account?

Here's the link to the bintray project: https://bintray.com/owlorbit-llc/Owlorbit/Owlorbit_SDK

It says it's linked to JCenter:

enter image description here

Upvotes: 1

Views: 1079

Answers (1)

Tim Nuwin
Tim Nuwin

Reputation: 2887

Bintray resolved the issue after I sent them a support ticket!

Upvotes: 1

Related Questions