SDK Install

  1. Get sdk resource SDK Download

  2. New android project(example: Android Studio)

  3. Put the aar file of SDK to “libs” directory (app / libs)

  4. Add arr support to the “build.gradle” file, like below

dependencies {
    implementation fileTree(include: ['*.aar'], dir: 'libs')
    ....
}
  1. Build –> Make Project