diff options
author | Allan Wang <me@allanwang.ca> | 2017-06-12 12:54:59 -0700 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2017-06-12 12:54:59 -0700 |
commit | 0063fde0bfab653e9b078e22fce93de2378ef4f0 (patch) | |
tree | 25d648d52cb68ad8c5911cde68de94f279f500cb | |
parent | 16d0ee60086f297d1d6a90e7f3d498e1e8764354 (diff) | |
download | kau-0063fde0bfab653e9b078e22fce93de2378ef4f0.tar.gz kau-0063fde0bfab653e9b078e22fce93de2378ef4f0.tar.bz2 kau-0063fde0bfab653e9b078e22fce93de2378ef4f0.zip |
Update readme
-rw-r--r-- | README.md | 30 |
1 files changed, 30 insertions, 0 deletions
@@ -2,8 +2,38 @@ Kotlin Android Utils +<!--Current Release 0.1--> + This library contains small helper functions used throughout almost all of my other projects. The goal is to make common interactions executable in a single line. +------------ + +Capsule is available on JitPack + +[![](https://jitpack.io/v/ca.allanwang/kau.svg)](https://jitpack.io/#ca.allanwang/kau) + +To apply, add the following to your root build.gradle: + +```gradle +allprojects { + repositories { + ... + maven { url "https://jitpack.io" } + } +} +``` + +And add the following dependencies (You can use a specific version, commit, or -SNAPSHOT): + +```gradle +dependencies { + compile 'ca.allanwang:kau:v0.1' +} + +``` + +----------- + # Features * [KPrefs](#kprefs) * [Changelog XML](#changelog) |