8000 GitHub - fast-af/fast-ios-sdk
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fast-af/fast-ios-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FastCheckout

Welcome to the FastCheckout SDK which lets you offer your users a one-click checkout experience with Fast.

Table of Contents

Requirements

  • Xcode 12.x
  • Swift 5.x

Installation

FastCheckout doesn't contain any external dependencies.

These are currently the supported installation options:

XCFrameworks

Each release of FastCheckout includes *.xcframework framework binaries.

Simply drag the needed framework binaries to your Frameworks, Libraries, and Embedded Content section under your target's General tab.

# Podfile
use_frameworks!

target 'YOUR_TARGET_NAME' do
    pod 'FastCheckout'
end

Replace YOUR_TARGET_NAME and then, in the Podfile directory, type:

$ pod install

Add this to Cartfile

binary "https://raw.githubusercontent.com/fast-af/fast-ios-sdk/0.1.0/FastCheckout.json"
$ carthage update

Create a Package.swift file.

// swift-tools-version:5.0

import PackageDescription

let package = Package(
  name: "YourProjectName",
  dependencies: [
    .package(url: "https://github.com/fast-af/fast-ios-sdk.git", .exact("0.1.0"))
  ],
  targets: [
    .target(name: "YourProjectName", dependencies: ["FastCheckout"])
  ]
)
$ swift build

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •  
0