-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathButtonMerchant.podspec
More file actions
24 lines (20 loc) · 955 Bytes
/
ButtonMerchant.podspec
File metadata and controls
24 lines (20 loc) · 955 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = 'ButtonMerchant'
s.version = '1.8.0'
s.summary = 'An open source client library for Button merchants.'
s.description = <<-DESC
The Button Merchant library is a light-weight, open-source method
to complete the App component of your Button Merchant integration
and join the Button Marketplace.
DESC
s.homepage = 'https://github.com/button/button-merchant-ios'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = "Button, Inc."
s.platform = "ios"
s.source = { :git => 'https://github.com/button/button-merchant-ios.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.swift_version = '5.0'
s.source_files = 'Source/**/*.{swift,h}'
s.resource_bundle = { 'ButtonMerchant' => "Source/Resources/PrivacyInfo.xcprivacy" }
s.pod_target_xcconfig = { "SWIFT_VERSION" => 5.3 }
end