1. Install FTTS SDK

Setup gradle maven

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:ftts-android:1.0.3"
}

Initialize FTTS in file Application

Last updated