Skip to content

Commit e631b67

Browse files
author
Karthik Thirumalasetti
authored
Update README.md
1 parent b9a0b6b commit e631b67

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

README.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,52 @@ Please contact [email protected] for your credientials.
3535
### Option 1: SDK
3636
The SDK can be included to handle authorization. There is no need for you to handle checksum generation and verification.
3737

38+
##### Install
39+
40+
Maven Includes
41+
==============
42+
Step 1. Add repo to your root pom.xml
43+
```
44+
<repositories>
45+
<repository>
46+
<id>jitpack.io</id>
47+
<url>https://jitpack.io</url>
48+
</repository>
49+
</repositories>
50+
```
51+
52+
Step 2. Add the dependency
53+
```
54+
<dependencies>
55+
<dependency>
56+
<groupId>com.github.appsflyio</groupId>
57+
<artifactId>devkit-javautils</artifactId>
58+
<version>0.0.1</version>
59+
</dependency>
60+
</dependencies>
61+
```
62+
63+
Gradle Includes
64+
==============
65+
66+
Step 1. Add it in your root build.gradle at the end of repositories
67+
```
68+
allprojects {
69+
repositories {
70+
...
71+
maven { url 'https://jitpack.io' }
72+
}
73+
}
74+
```
75+
76+
Step 2. Add the dependency
77+
```
78+
dependencies {
79+
compile 'com.github.User:Repo:Tag'
80+
}
81+
82+
```
83+
3884
##### Configuration
3985
```
4086
AppInstance.AFConfig config = new AppInstance.AFConfig("EXECUTOR_URL", "SECRET_KEY", "APP_KEY");

0 commit comments

Comments
 (0)