How does publishing android libraries that can be imported easily by other people work?
问题 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 does this work? Where does the library come from? In general terms, how would I go about publishing a library so that other people can import it like this? Note: this is not a duplicate of Publish jar library to bintray using gradle/publish-jar-library-to-bintray-using-gradle. That question was