Reputation:
Hi guys i was wondering how you can make your own dependyncy in android so that you can use it on every project that you make? something like this compile 'com.android.support:appcompat-v7:19.0.1'
. Any ideas where to start with?
Upvotes: 1
Views: 287
Reputation: 4981
You can add your jar to maven central: http://kirang89.github.io/blog/2013/01/20/uploading-your-jar-to-maven-central/
Or create module and add it to each of your projects: compile project(':MyModule')
Upvotes: 1