Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 680 Bytes

README.md

File metadata and controls

25 lines (18 loc) · 680 Bytes

Jitpack Android Sample

A sample library to demonstrate publishing to Jitpack.

Look at lib/build.gradle for how to setup the maven-publish plugin.

This repo is automatically built by Jitpack and made available on Jitpack maven repo. To use it, add the below to your app/build.gradle[.kts]

repositories {
    maven { url = uri("https://jitpack.io") }
}

dependencies {
    implementation("com.github.martinbonnin:jitpack-android-sample:v1.0")
}

If you want to experiment, fork it, push a tag to your fork and consume your fork with:

dependencies {
    implementation("com.github.$yourUserName:jitpack-android-sample:$yourTag")
}