-
Notifications
You must be signed in to change notification settings - Fork 47
/
iZettleSDK.podspec
21 lines (21 loc) · 1.23 KB
/
iZettleSDK.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = 'iZettleSDK'
s.version = '4.16.2'
s.summary = 'iZettle SDK for iOS'
s.description = <<-DESC
For detailed information, please see iZettleSDK documentation and Readme.
DESC
s.homepage = 'https://www.zettle.com/'
s.license = { :type => 'Commercial', :file => 'LICENSE' }
s.author = { 'PayPal Inc' => '[email protected]' }
s.platform = :ios, '12.0'
s.pod_target_xcconfig = { 'VALID_ARCHS' => 'arm64 armv7 x86_64' }
s.source = { :git => 'https://github.com/iZettle/sdk-ios.git', :tag => "#{s.version}" }
s.source_files = "#{s.name}/**/*.{h,swift}"
s.preserve_paths = 'iZettleSDK/iZettleSDK.xcframework'
s.public_header_files = 'iZettleSDK/iZettleSDK.xcframework/**/*.h'
s.vendored_frameworks = 'iZettleSDK/iZettleSDK.xcframework', 'iZettleSDK/iZettlePayments.xcframework', 'iZettleSDK/PPRiskMagnes.xcframework'
s.frameworks = 'SystemConfiguration', 'CoreLocation', 'ExternalAccessory', 'AudioToolbox', 'AVFoundation', 'MediaPlayer', 'QuartzCore', 'Accelerate', 'MessageUI', 'CoreData'
s.library = 'z', 'c++'
s.xcconfig = { 'OTHER_LDFLAGS' => '-ObjC', 'LIBRARY_SEARCH_PATHS' => '"$(PODS_ROOT)/iZettleSDK"' }
end