forked from wkoutre/react-native-braintree-xplat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRCTBraintree.podspec
More file actions
28 lines (24 loc) · 963 Bytes
/
RCTBraintree.podspec
File metadata and controls
28 lines (24 loc) · 963 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Pod::Spec.new do |s|
s.name = 'RCTBraintree'
s.version = package['version']
s.summary = package['description']
s.description = package['description']
s.homepage = 'https://github.com/CodeFishStudio/react-native-braintree-xplat.git'
s.license = package['license']
s.author = { 'Nick Koutrelakos' => 'nick@stadiumgoods.com' }
s.platform = :ios, '10.0'
s.source = { :git => 'https://github.com/CodeFishStudio/react-native-braintree-xplat.git', :tag => 'master' }
s.source_files = 'ios/**/*.{h,m}'
s.requires_arc = true
s.ios.deployment_target = '10.0'
s.tvos.deployment_target = '10.0'
s.dependency 'Braintree', '4.37.1'
s.dependency 'BraintreeDropIn', '8.1.3'
s.dependency 'Braintree/PayPal'
s.dependency 'Braintree/Apple-Pay', '4.37.1'
s.dependency 'Braintree/DataCollector'
s.dependency 'Braintree/PaymentFlow'
s.dependency 'React'
end