Skip to content

SDK integration

Adding SDK to Android project

SDK is delivered in .jar format and can be included by following these steps:

  • Inside app's build.gradle module create libs folder if one does not exist.
  • Put the JAR archive into libs folder.
  • In app project's build.gradle file, in dependencies add the following line if one does not exist:
compile fileTree(dir: 'libs', include: ['*.jar'])

or

implementation fileTree(dir: 'libs', include: ['*.jar'])

This will add JAR archive to the project classpath. If project uses Android Gradle plugin 3.0 or newer, implementation scope should be used, compile otherwise.