Skip to content

Commit 6954346

Browse files
author
Shrikanth Ravi
authored
Update README.md
1 parent 7859aea commit 6954346

File tree

1 file changed

+39
-14
lines changed

1 file changed

+39
-14
lines changed

README.md

Lines changed: 39 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,47 @@ Still in Active development.
1010

1111
### Installation
1212

13-
Add it in your root build.gradle at the end of repositories:
14-
```gradle
15-
allprojects {
16-
repositories {
17-
...
18-
maven { url 'https://jitpack.io' }
13+
* **Gradle**
14+
15+
Add it in your root build.gradle at the end of repositories:
16+
```gradle
17+
allprojects {
18+
repositories {
19+
...
20+
maven { url 'https://jitpack.io' }
21+
}
1922
}
20-
}
21-
```
23+
```
24+
25+
Add the dependency in your app build.gradle
26+
```gradle
27+
dependencies {
28+
compile 'com.github.shrikanth7698:Collapsible-Calendar-View-Android:v0.0.1'
29+
}
30+
```
31+
32+
* **Maven**
33+
34+
Add the JitPack repository to your build file
35+
```gradle
36+
<repositories>
37+
<repository>
38+
<id>jitpack.io</id>
39+
<url>https://jitpack.io</url>
40+
</repository>
41+
</repositories>
42+
```
43+
44+
Add the dependency
45+
```gradle
46+
<dependency>
47+
<groupId>com.github.User</groupId>
48+
<artifactId>Repo</artifactId>
49+
<version>Tag</version>
50+
</dependency>
51+
```
52+
2253

23-
Add the dependency in your app build.gradle
24-
```gradle
25-
dependencies {
26-
compile 'com.github.shrikanth7698:Collapsible-Calendar-View-Android:v0.0.1'
27-
}
28-
```
2954

3055
### Usage
3156

0 commit comments

Comments
 (0)