Skip to content

Commit db25caf

Browse files
committed
1.Updated README.md.
1 parent 76ed17b commit db25caf

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

README.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,39 @@
11
# multiutillib
2+
3+
## Setup
4+
5+
#### Step 1. Add the JitPack repository to your build file
6+
##### Add it in your root build.gradle at the end of repositories:
7+
```
8+
allprojects{
9+
repositories {
10+
...
11+
maven { url 'https://jitpack.io' }
12+
}
13+
}
14+
```
15+
#### Step 2. Add the dependency
16+
```
17+
dependencies {
18+
...
19+
implementation 'com.github.amitjangid80:multiutillib:v1.0.0'
20+
}
21+
```
22+
23+
#### Using maven:
24+
```
25+
<repositories>
26+
<repository>
27+
<id>jitpack.io</id>
28+
<url>https://jitpack.io</url>
29+
</repository>
30+
</repositories>
31+
```
32+
#### Step 2. Add the dependency
33+
```
34+
<dependency>
35+
<groupId>com.github.amitjangid80</groupId>
36+
<artifactId>multiutillib</artifactId>
37+
<version>v1.0.0</version>
38+
</dependency>
39+
```

0 commit comments

Comments
 (0)