Reputation: 2887
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:
Upvotes: 1
Views: 1079