forked from danielnegri/wepay-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WePay.podspec
24 lines (21 loc) · 1.21 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
24
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/JoistApp/wepay-ios/raw/master/wepay-ios-7.0.2.zip" }
s.authors = { 'Chaitanya Bagaria' => 'mobile@wepay.com' }
#https://github.com/y2chaits/wepay-ios/archive/refs/tags/v7.0.2.zip
#https://github.com/wepay/wepay-ios/releases/download/v#{s.version}/wepay-ios-#{s.version}.zip
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