Releases for CheckoutEventLoggerKit
CheckoutEventLoggerKit
is an internal tool for securely logging impersonal usage data in SDKs.
- iOS 10.0+
- Xcode 11.0+
- Swift 5.0+
CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:
$ gem install cocoapods
CocoaPods 1.9+ is required to use CheckoutEventLoggerKit
To integrate CheckoutEventLoggerKit into your Xcode project using CocoaPods, specify it in your Podfile
:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'
use_frameworks!
target '<Your Target Name>' do
pod 'CheckoutEventLoggerKit', :git => 'https://github.com/checkout/checkout-event-logger-ios-framework.git', :tag => '1.0.0'
end
Then, run the following command:
$ pod install
Carthage users should download CheckoutEventLoggerKit.xcframework
and integrate with their project.
Swift Package Manager is a tool for automating the distribution of Swift code and is integrated into the swift compiler.
Once you have your Swift package set up, adding CheckoutEventLoggerKit as a dependency is as easy as adding it to the dependencies
value of your Package.swift
.
dependencies: [
.package(url: "https://github.com/checkout/checkout-event-logger-ios-framework.git", .upToNextMajor(from: "1.0.0"))
]