-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRCTAllPay.podspec
More file actions
22 lines (20 loc) · 1.02 KB
/
RCTAllPay.podspec
File metadata and controls
22 lines (20 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
Pod::Spec.new do |s|
s.name = "RCTAllPay"
s.version = package["version"]
s.summary = package["description"]
s.homepage = package["repository"]["url"]
s.license = package["license"]
s.author = package["author"]
s.platforms = { :ios => "9.0" }
s.source = { :git => package["repository"]["url"], :tag => "#{s.version}" }
s.source_files = "ios/**/*.{h,m}"
s.dependency "React"
s.vendored_libraries = 'ios/RCTAllPay/vendor/libAllPaySDK.a', 'ios/RCTAllPay/vendor/libAppleModule.a', 'ios/RCTAllPay/vendor/libUPModule.a','ios/RCTAllPay/vendor/libWXModule.a','ios/RCTAllPay/vendor/libAliModule.a'
s.vendored_frameworks = 'ios/RCTAllPay/vendor/AlipaySDK.framework', 'ios/RCTAllPay/vendor/AlipayPlusClient.framework'
s.requires_arc = true
s.frameworks = 'Security', 'CoreTelephony', 'SystemConfiguration'
s.library = 'c++','z','sqlite3'
s.resources = 'ios/RCTAllPay/vendor/AlipaySDK.bundle'
end