Skip to content
This repository was archived by the owner on Nov 10, 2024. It is now read-only.

Commit 61308cf

Browse files
authored
Update README.md
1 parent 56017b2 commit 61308cf

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

README.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,39 @@ Sample usage in your activity:
1717
.show();
1818

1919

20+
21+
## Installation
22+
23+
maven:
24+
25+
```xml
26+
<repositories>
27+
<repository>
28+
<id>jitpack.io</id>
29+
<url>https://jitpack.io</url>
30+
</repository>
31+
</repositories>
32+
```
33+
Step 2. Add the dependency
34+
```xml
35+
<dependency>
36+
<groupId>com.github.mreram</groupId>
37+
<artifactId>ShowCaseView</artifactId>
38+
<version>1.0.0</version>
39+
</dependency>
40+
```
41+
gradle:
42+
43+
Add it in your root build.gradle at the end of repositories:
44+
```groovy
45+
allprojects {
46+
repositories {
47+
...
48+
maven { url 'https://jitpack.io' }
49+
}
50+
}
51+
```
52+
Step 2. Add the dependency
53+
```groovy
54+
compile 'com.github.mreram:ShowCaseView:1.0.0'
55+
```

0 commit comments

Comments
 (0)