-
Notifications
You must be signed in to change notification settings - Fork 90
/
Plaid.podspec
27 lines (22 loc) · 1.17 KB
/
Plaid.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
Pod::Spec.new do |s|
s.name = 'Plaid'
s.module_name = 'LinkKit'
s.version = '6.0.0'
s.summary = 'The official Plaid Link SDK for iOS.'
s.description = <<-DESC
Plaid Link is a quick and secure way to integrate with
the Plaid API. LinkKit is an embeddable framework
that handles credential validation, multi-factor
authentication, and error handling for each institution
that Plaid supports — all while keeping credentials from
ever hitting your infrastructure.
DESC
s.screenshot = 'https://plaid.com/assets/img/docs/link-ios.png'
s.homepage = 'https://plaid.com/docs/link/ios/'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = 'Plaid Inc.'
s.platform = :ios, '14.0'
s.source = { :git => 'https://github.com/plaid/plaid-link-ios.git', :tag => s.version }
s.ios.frameworks = 'Foundation', 'UIKit', 'WebKit', 'SafariServices'
s.ios.vendored_frameworks = 'LinkKit.xcframework'
end