How to publish android library that can be easily used by other people?

97 Views Asked by At

It is possible to easily use third party libraries with gradle. For example, the following allows me to use Retrofit in my app.

   dependencies {
       compile 'com.squareup.retrofit:retrofit:1.9.0'
   }

How do I publish my own Android library so that other people can use it in a similar fashion?

1

There are 1 best solutions below