ftmobilecommerce framework allowing easy integration with FinTiv’s MobileCommerce service.
To get a Git project into your build:
Step 1. Add the JitPack repository to your build file
allprojects {
    repositories {
        ...
        maven { url 'https://jitpack.io' }
    }
}
          Step 2. Add the dependency
dependencies {
   implementation "com.github.andresjose1983.fintiv:ftmobilecommerce:0.0.3"
}
          If you plan on using the Framework’s FTCMScanQRActivity for Stamps & Rewards’ QR Scanning, add CAMERA permission in your manifest file.
              In your Application class, call the static setup method to configure it from the configuration file:
override fun onCreate() {
    FTMobileCommerce.setup()
}