The Android SDK is delivered via Jitpack repository.
To provide greater customization options, we have open-sourced our UIKit and deprecated the managed UIKit version previously available. For the best quality and access to the latest features, we strongly recommend integrating our UIKit with the open-source version. For more details Please refer to Android UIKit Installation Guide section.
Prerequisite
SDK supports Android 5.0 (API Level 21) and above
android {
...
defaultConfig {
minSDKVersion 21 // at least 21
}
}
Installation
Add the Jitpack repository in your project level build.grade at the end of repositories:
In your app module's build.gradle , add the following packaging options.
Code Obfuscation
By using our SDK, you can use the Android ProGuard tool to obfuscate, shrink, and optimize your code. Obfuscated code can be more difficult for other people to reverse engineer. ProGuard renames classes, fields, and methods with semantically obscure names and removes unused code. However, you need to add these configurations to your ProGuard rules when using our SDK.