I made an android library that I\'d like upload to make it available for all the android devs via build.gradle. I\'ve followed these steps and these steps, but this is the f
Gradle Fetch the Dependency libraries from Maven Repository you have to upload the package to the Maven Repo or just put the library in the /libs folder and put this under dependencies block:
compile fileTree(include: ['*.jar'], dir: 'libs')
You can see a guide to upload a library to the maven repo Here