File tree Expand file tree Collapse file tree 1 file changed +46
-0
lines changed
Expand file tree Collapse file tree 1 file changed +46
-0
lines changed Original file line number Diff line number Diff line change 3535### Option 1: SDK
3636The 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```
4086AppInstance.AFConfig config = new AppInstance.AFConfig("EXECUTOR_URL", "SECRET_KEY", "APP_KEY");
You can’t perform that action at this time.
0 commit comments