Reputation: 51411
Plain and simple.
I have an open-source library repository on GitHub and the users of this Android library are demanding that the library is published on maven central for easier use. Since I am not very familiar with maven I do not really know what to do. I am also unaware what maven actually does differently then let's say Gradle and what it's advantage is.
How can I add maven support for my project? How can I upload my project to maven central? Is there some kind of detailed tutorial on what exactly I need to do?
Upvotes: 1
Views: 612
Reputation: 22893
The easiest way to get to Maven Central with Gradle is by using Bintray. Here is how: http://blog.blundell-apps.com/locally-release-an-android-library-for-jcenter-or-maven-central-inclusion/
Upvotes: 1