File tree Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change 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+ ```
You can’t perform that action at this time.
0 commit comments