We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76ed17b commit db25cafCopy full SHA for db25caf
README.md
@@ -1 +1,39 @@
1
# 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
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