1. Install FOCR SDK

Setuip 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:focr-android:1.0.2'
}

Initialize FOCR in file Application

Last updated