-
Notifications
You must be signed in to change notification settings - Fork 0
/
WePay.podspec
23 lines (19 loc) · 1.08 KB
/
WePay.podspec
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 = "WePay"
s.version = "7.0.2"
s.summary = "WePay binary for both simulator and iOS devices"
s.description = "A library that helps WePay partners develop their own iOS apps aimed at merchants and/or consumers for collection of payments via various payment methods"
s.homepage = "http://github.com/wepay/wepay-ios"
s.documentation_url = 'http://wepay.github.io/wepay-ios/'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.source = { :http => "https://github.com/wepay/wepay-ios/releases/download/v#{s.version}/wepay-ios-#{s.version}.zip" }
s.authors = { 'Chaitanya Bagaria' => 'mobile@wepay.com' }
s.ios.deployment_target = '8.0'
s.ios.requires_arc = true
s.ios.preserve_paths = '**'
s.source_files = 'WePay.framework/**/*.h'
s.public_header_files = 'WePay.framework/**/*.h'
s.vendored_frameworks = 'WePay.framework'
s.ios.frameworks = 'AudioToolbox', 'AVFoundation', 'ExternalAccessory', 'MediaPlayer', 'WebKit'
s.ios.libraries = 'c++', 'z'
end