forked from facebookarchive/react-native-fbsdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreact-native-fbsdk.podspec
30 lines (26 loc) · 993 Bytes
/
react-native-fbsdk.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
25
26
27
28
29
30
require 'json'
package = JSON.parse(File.read(File.join(__dir__, './', 'package.json')))
Pod::Spec.new do |s|
s.name = package['name']
s.version = package['version']
s.summary = package['description']
s.requires_arc = true
s.author = { 'dzhuowen' => '[email protected]' }
s.license = package['license']
s.homepage = package['homepage']
s.source = { :git => 'https://github.com/facebook/react-native-fbsdk.git', :tag => "v#{package['version']}" }
s.platforms = { :ios => "9.0", :tvos => "9.2" }
s.dependency 'React'
s.subspec 'Core' do |ss|
ss.dependency 'FBSDKCoreKit', '~> 8.1'
ss.source_files = 'ios/RCTFBSDK/core/*.{h,m}'
end
s.subspec 'Login' do |ss|
ss.dependency 'FBSDKLoginKit', '~> 8.1'
ss.source_files = 'ios/RCTFBSDK/login/*.{h,m}'
end
s.subspec 'Share' do |ss|
ss.dependency 'FBSDKShareKit', '~> 8.1'
ss.source_files = 'ios/RCTFBSDK/share/*.{h,m}'
end
end