Adding dependency

Step 1
Add the JitPack repository to your project-level build.gradle file
- Add it in your root build.gradle at the end of repositories


allprojects {    repositories {
        google()
        jcenter()
        mavenCentral()
        maven {
            url "https://jitpack.io"
            credentials { username authToken }
        }
    }
}

Step 2
Add the dependency to your module-level build.gradle file

dependencies {		implementation 'com.github.gouravspyne:MFCsdk:2.0'	}

Step 3
Add the token to your module-level gradle.properties file

authToken= jp_fs5s5gl8ur3qohon41oe45k7vi

Step 4
Your app level gradle properties should be as followed

compileSdkVersion 31
minSdkVersion 21
targetSdkVersion 30

What’s Next