-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSeamlessPay.podspec
executable file
·31 lines (25 loc) · 1.18 KB
/
SeamlessPay.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
Pod::Spec.new do |s|
s.name = 'SeamlessPay'
s.version = '2.3.0'
s.summary = 'There are three demo apps included with the framework.'
s.description = <<~DESC
The SeamlessPay iOS SDK makes it quick and easy to build an excellent payment experience in your iOS app. We provide powerful elements that can be used out-of-the-box to collect your users’ payment details. We also expose the low-level APIs that power those UIs so that you can build fully custom experiences.
DESC
s.homepage = 'https://github.com/seamlesspay/seamlesspay-ios'
s.license = { type: 'MIT', file: 'LICENSE' }
s.author = { 'Seamless Payments' => 'info@seamlesspay.com' }
s.source = { git: 'https://github.com/seamlesspay/seamlesspay-ios.git', tag: s.version.to_s }
s.ios.deployment_target = '15.0'
s.swift_versions = '5.7'
s.source_files = [
'SeamlessPay/**/*.{swift}',
'ObjC/**/*.{h,m}'
]
s.exclude_files = 'SeamlessPay/SeamlessPay+ExportedImports.swift'
s.resource_bundles = {
'SeamlessPay' => ['ObjC/Resources/Assets/**/*']
}
s.pod_target_xcconfig = {
'SWIFT_INSTALL_OBJC_HEADER' => 'NO'
}
end