-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPinwheelSDK.podspec
More file actions
23 lines (19 loc) · 1012 Bytes
/
PinwheelSDK.podspec
File metadata and controls
23 lines (19 loc) · 1012 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'PinwheelSDK'
s.version = '3.5.0'
s.summary = 'Pinwheel iOS SDK'
s.swift_version = '5.0'
s.description = <<-DESC
The Pinwheel SDK is used to allow end-users to manage their payroll provider settings without leaving your app. They can select their employer, authenticate with their payroll platform login credentials, and authorize direct deposit changes.
DESC
s.homepage = 'https://github.com/underdog-tech/pinwheel-ios-sdk'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Pinwheel Engineering' => 'eng@getpinwheel.com' }
s.source = { :git => 'https://github.com/underdog-tech/pinwheel-ios-sdk.git', :tag => s.version.to_s }
s.ios.deployment_target = '13.0'
s.default_subspec = 'PinwheelLinkSDK'
s.subspec 'PinwheelLinkSDK' do |ss|
ss.vendored_frameworks = "PinwheelSDK.xcframework"
ss.ios.deployment_target = '13.0'
end
end