Skip to content

Latest commit

 

History

History
44 lines (32 loc) · 1.3 KB

README.md

File metadata and controls

44 lines (32 loc) · 1.3 KB

GetResponseAPI Android SDK

version licence platform

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.

Requirements

  • Gradle based project
  • Minimum Android Sdk version - 11

Installation

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.

Example usage

See our sample module for examples. Each Activity contains single example usage.

License

See LICENSE.md