FTLoyalty

ft-loyalty framework allowing easy integration with FinTiv’s Loyalty service.

Getting Started

Prerequisites

Installing

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.StickyStreet.fintiv-android:ft-loyalty:0.0.1'
}

In your Application class, call the static setup method to configure it:

override fun onCreate() {
    FTLoyalty.setup()
}