-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnpsSdk.podspec
18 lines (18 loc) · 982 Bytes
/
npsSdk.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = 'npsSdk'
s.version = '1.0.20'
s.summary = 'And SDK to connect to NPS services'
s.license = { :type => 'MIT', :file => 'LICENCE' }
s.homepage = 'https://github.com/Ingenico-NPS-Latam/nps-sdk-ios'
s.authors = { 'Ingenico' => '[email protected]', 'NPS' => '[email protected]'}
s.source = { :git => 'https://github.com/Ingenico-NPS-Latam/nps-sdk-ios.git', :tag => '1.0.20' }
s.frameworks = 'SystemConfiguration', 'Foundation', 'CoreLocation', 'AdSupport', 'CoreFoundation', 'CoreTelephony', 'ExternalAccessory', 'UIKit'
s.requires_arc = true
s.platform = :ios
s.ios.deployment_target = '9.0'
s.public_header_files = 'npsSdk/*.h'
s.source_files = 'npsSdk/*.{h,m}'
s.description = 'This SDK helps you yo integrate from an iOS Device to NPS Services'
s.preserve_paths = 'Frameworks/FraudForce.framework'
s.vendored_frameworks = 'Frameworks/FraudForce.framework'
end