FTSkinService

iOS framework allowing easy integration with FinTiv’s Skin Service.

Getting Started

Prerequisites

Installation

Add pod ‘FTSkinService’ to your Podfile, run pod install & add configuration file to your target.

In Podfile

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.3'
use_frameworks!

workspace 'path/to/your/Project.xcproj'

target "YourTarget" do
  pod 'FTMobileCommerce'
end

In terminal

pod install

Add Configuration file

Add a copy of SkinService.plist in Pods/FTSkinService/ to your Target. Fill the values in with those obtained from Fintiv. Such that Bundle.main.path(forResource:…) can access the file

In AppDelegate, call the static setup method to configure it from the configuration file

Import FTSkinService

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
    FTSkinService.setup()
}