1. Install IOE SDK

Setup gradle maven

Open build.grade file and add maven line like below

allprojects {
    repositories {
        google()  
        mavenCentral()
        maven { url 'https://jitpack.io' } <- add this line
    }
}

Open file app/build.grade then add sdk:

dependencies {
...
       implementation "com.github.ftechmobile:ioe-sdk-android:1.1.0"
}

Initialize IOE in file Application

Last updated