forked from checkout/frames-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFrames.podspec
37 lines (32 loc) · 1.24 KB
/
Frames.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
Pod::Spec.new do |s|
s.name = "Frames"
s.version = "3.5.0"
s.summary = "Checkout API Client, Payment Form UI and Utilities in Swift"
s.description = <<-DESC
Checkout API Client and Payment Form Utilities in Swift.
This library contains methods to implement a payment form as well as UI elements.
DESC
s.homepage = "https://github.com/checkout/frames-ios.git"
s.swift_version = "5.0"
s.license = "MIT"
s.author = { "Checkout.com Integration" => "[email protected]" }
s.platform = :ios, "10.0"
s.source = { :git => "https://github.com/checkout/frames-ios.git", :tag => "#{s.version}" }
s.source_files = 'Source/**/*.swift'
s.exclude_files = "Classes/Exclude"
s.resource_bundles = {
'Frames' => ['Source/Resources/**/*']
}
s.dependency 'PhoneNumberKit', '~> 3.3'
s.dependency 'CheckoutEventLoggerKit', '~> 1.0'
s.test_spec do |t|
t.source_files = 'Tests/**/*.swift'
t.resources = 'Tests/Fixtures/*'
t.requires_app_host = true
end
s.pod_target_xcconfig = {
'VALID_ARCHS' => 'arm64 armv7 x86_64',
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386'
}
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }
end