There is a weird issue I am facing here. I had my Android library uploaded to Bintray and when I requested to add to jCenter everything worked fine.
The library was this:
http://jcenter.bintray.com/com/github/kostasdrakonakis/button_preference/1.0.0
So I could see something like this using gradle:
compile 'com.github.kostasdrakonakis:button_preference:1.0.0'
But then I changed the artifact id to this:
Instead of button_preference to button-preference
So I could expect something like:
compile 'com.github.kostasdrakonakis:button-preference:1.0.0'
But since I see it like this:
https://bintray.com/bintray/jcenter?filterByPkgName=button-preference
but not in jcenter:
http://jcenter.bintray.com/com/github/kostasdrakonakis/
Any suggestions?