Skip to content

Commit acbd5ba

Browse files
committed
2 parents 989d6b8 + 37fb589 commit acbd5ba

File tree

1 file changed

+44
-1
lines changed

1 file changed

+44
-1
lines changed

README.md

+44-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,44 @@
1-
Documentation coming soon.
1+
# Like Button
2+
3+
Like Button is a library that allows you to create a button with animation effects similar to [Twitter's heart](https://dribbble.com/shots/2416983-Twitter-Heart-Animation) when you like something.
4+
5+
---
6+
7+
# Table of Contents
8+
9+
1. [Gradle Dependency](https://github.com/jd-alexander/LikeButton#gradle-dependency)
10+
11+
---
12+
13+
# Gradle Dependency
14+
15+
[ ![JitPack](https://img.shields.io/github/release/jd-alexander/likebutton.svg?label=jitpack) ](https://jitpack.io/#jd-alexander/likebutton)
16+
[![Build Status](https://travis-ci.org/jd-alexander/likebutton.svg)](https://travis-ci.org/jd-alexander/likebutton)
17+
[![License](https://img.shields.io/badge/license-Apache%202-4EB1BA.svg?style=flat-square)](https://www.apache.org/licenses/LICENSE-2.0.html)
18+
19+
#### Repository
20+
21+
Add this in your root `build.gradle` file (**not** your module `build.gradle` file):
22+
23+
```gradle
24+
allprojects {
25+
repositories {
26+
...
27+
maven { url "https://jitpack.io" }
28+
}
29+
}
30+
```
31+
32+
#### Dependency
33+
34+
Add this to your module's `build.gradle` file:
35+
36+
```gradle
37+
dependencies {
38+
...
39+
compile 'com.github.jd-alexander:LikeButton:0.1.0'
40+
}
41+
}
42+
```
43+
44+
---

0 commit comments

Comments
 (0)