Skip to content

Publish lib to jitpack

Latest
Compare
Choose a tag to compare
@Roaim Roaim released this 18 Aug 22:24
· 6 commits to master since this release

The root build.gradle should look like

allprojects {
    repositories {
        google()
        jcenter()
        maven { url "https://jitpack.io" }
    }
}

and in the app module build.gradle add following

dependencies {
    implementation 'com.github.Roaim:KotlinPinBoard:v2.5'
}