1. Install eKYC SDK
Setup gradle maven
allprojects {
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' } <- // add this line
}
}dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' } <- // add this line
}
}Open file app/build.grade then add sdk:
dependencies {
...
implementation "com.github.ftechmobile:feykc-android:1.0.1"
}Initialize eKYC in file Application
ApplicationLast updated