Publish On Bintray Using The Gradle-bintray-plugin
I have an Android-Library that I would like to publish on bintray. So far so good, I am using the gradle-bintray-plugin 1.2 with the following configuration: bintray { user = p
Solution 1:
Can I change this "path" somehow? Does it matter?
Yes and yes. This path changed, as soon as I used the group variable:
group = "my.awesome.group"
This solves the second Question as well. The path of the uploaded file is then:
$BINTRAYUSERNAME/$REPONAME/$PACKAGENAME/$GROUPPATH/$VERSION/*.aar
I recommend using for Android libraries the example script.
Post a Comment for "Publish On Bintray Using The Gradle-bintray-plugin"