GetResponse Android Developer Kit is a small SDK to help you with most common use cases in which you'd want to use GetResponse platform.
There is also a sample application where there are most simple examples of how to use our SDK.
- Gradle based project
- Minimum Android Sdk version - 11
In your app build.gradle add jitpack.io repository add our library as dependency. We use Jackson library, and because of their licence files inside jars you also have to exclude those files from your apk.
android {
...
packagingOptions {
exclude 'META-INF/LICENSE'
}
}
repositories {
maven { url "https://jitpack.io" }
}
dependencies {
compile 'com.github.GetResponse:Android-Developer-Kit:1.0.1'
}
Now you're ready to go. Check our Cookbook for usage examples.
See our sample module for examples. Each Activity contains single example usage.
See LICENSE.md