-
Notifications
You must be signed in to change notification settings - Fork 2
/
OloPaySDK.podspec
22 lines (19 loc) · 1.18 KB
/
OloPaySDK.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |spec|
spec.name = "OloPaySDK"
spec.version = "4.0.3"
spec.summary = "A CocoaPods library for the Olo Pay SDK written in Swift"
spec.description = <<-DESC
Olo Pay is an E-commerce payment solution designed to help restaurants grow, protect, and support their digital ordering and delivery business. Olo Pay is specifically designed for digital restaurant ordering to address the challenges and concerns that weʼve heard from thousands of merchants.
DESC
spec.homepage = "https://github.com/ololabs/olo-pay-ios-sdk-releases"
spec.license = { :type => "Olo Pay SDK License", :file => "LICENSE.md" }
spec.author = "Olo, Inc."
spec.platform = :ios
spec.ios.deployment_target = "13.0"
spec.swift_version = "5.0"
spec.source = { :git => "https://github.com/ololabs/olo-pay-ios-sdk-releases.git", :tag => "#{spec.version}" }
spec.source_files = "**/src/OloPaySDK/OloPaySDK/**/*.{h,m,swift}"
spec.public_header_files = "**/src/OloPaySDK/OloPaySDK/**/*.h"
spec.dependency "Stripe", "23.27.3"
spec.resource_bundles = {"OloPaySDK" => [ "**/src/OloPaySDK/OloPaySDK/Assets/**/SdkInfo.plist" ]}
end