From cb46fab7f6ee5edaa2331b5b7b37378d97f7f29b Mon Sep 17 00:00:00 2001 From: Till Hellmund Date: Sun, 9 Sep 2018 09:27:37 +0200 Subject: [PATCH 1/2] Update README.md --- README.md | 31 +++++++++++++++++++++++++++++-- 1 file changed, 29 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b19ecfd04..adab091cb 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,36 @@ Android Week View ================= -[![Gitter chat](https://badges.gitter.im/gitterHQ/gitter.png)](https://gitter.im/Android-Week-View/Lobby) +**Android Week View** is an Android library to display calendar views within an app. It was developed by [Raquib-ul Alam](https://github.com/alamkanak). Because it is not currently maintained and does not work when using Support Library 28, I’m providing this fork. -**Android Week View** is an android library to display calendars (week view or day view) within the app. It supports custom styling. +Usage +--------- +1. Add JitPack repository to your build file. +```groovy +allprojects { + repositories { + ... + maven { url 'https://jitpack.io' } + } +} +``` + +2. Add the dependency. +```groovy +// For the bugfix-only version +implementation 'com.github.thellmund:Android-Week-View:1.3' + +// For the version with an updated API +implementation 'com.github.thellmund:Android-Week-View:2.0' +``` +More info about version 2.0 here: [Release 2.0](https://github.com/thellmund/Android-Week-View/releases/tag/2.0) + +Below, you find the original README by [Raquib-ul Alam](https://github.com/alamkanak). + +--- + +Android Week View +================= ![](images/screen-shot.png) From fcfe8b61d42410b4feb8618c4d8219c797fa5758 Mon Sep 17 00:00:00 2001 From: Till Hellmund Date: Sun, 9 Sep 2018 10:01:38 +0200 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index adab091cb..76f7ec732 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ Android Week View ================= -**Android Week View** is an Android library to display calendar views within an app. It was developed by [Raquib-ul Alam](https://github.com/alamkanak). Because it is not currently maintained and does not work when using Support Library 28, I’m providing this fork. +**Android Week View** is an Android library to display calendar views within an app. It was developed by [Raquib-ul Alam](https://github.com/alamkanak). Because it is not currently maintained and does not work when using API level 28, I’m providing this fork. Usage ---------