How to create own gradle dependency library in Android Studio?

sandeepmaaram picture sandeepmaaram · Aug 11, 2016 · Viewed 8k times · Source

For developing android applications by using Android Studio, generally we used to add dependencies in build.gralde instead of adding jars or libraries. Example given below

compile 'com.android.support:support-v4:23.4.0'
compile 'com.android.support:recyclerview-v7:23.4.0'
compile 'com.google.android.gms:play-services:9.2.1'

How to create my own gradle dependency library in Android Studio?

Answer

piotrek1543 picture piotrek1543 · Aug 11, 2016

I've already created my own library CustomSpinner and its Gradle's dependency is

dependencies {
    compile 'com.github.piotrek1543:CustomSpinner:0.1'
}

I'm pretty sure that this is what you're expecting.

I made it using Jitpack.io and following steps in that great Medium article:

Create and Distribute your own Android Library after reading this post!

I don't want copy-paste what was here already said, so please patiently read this article.

Hope it will help