I have uploaded library to bintray, but when I try to use it in my project gradle build fails with Error:(26, 13) Failed to resolve: com.ymirski.library:date-utils:0.0.1
Here is my app build.gradle dependencies:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.1.0'
testCompile 'junit:junit:4.12'
compile 'com.ymirski.library:date-utils:0.0.1'
}
project build.gradle:
allprojects {
repositories {
jcenter()
maven {
url "http://droidlab.bintray.com/maven"
}
}
}