I have setup a private repo, package etc.. where I have uploaded my JAR on bintray UI it says I need to set this in my gradle
maven {
url "http://xxx.bintray.com/Test"
credentials {
username 'xxx'
password '<api key>'
}
}
which I have done (In have taken the PAI key in my profile). and then I have added my dependency:
compile(group: 'com.mypackage', name: 'the-name', version: '0.4.8', ext: 'jar', classifier: '')
But when I synch my gradle it says it cannot find com.mypackage:the-name:0.4.8
Is there something else to setup to be able to pull my lib?