33 lines
		
	
	
		
			931 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			931 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # Uncomment the next line to define a global platform for your project
 | |
| platform :ios, '10.0'
 | |
| 
 | |
| target 'VideoCaching' do
 | |
|   rn_path = '../node_modules/react-native'
 | |
| 
 | |
|   pod 'yoga', path: "#{rn_path}/ReactCommon/yoga/yoga.podspec"
 | |
|   pod 'DoubleConversion', :podspec => "#{rn_path}/third-party-podspecs/DoubleConversion.podspec"
 | |
|   pod 'Folly', :podspec => "#{rn_path}/third-party-podspecs/Folly.podspec"
 | |
|   pod 'glog', :podspec => "#{rn_path}/third-party-podspecs/GLog.podspec"
 | |
|   pod 'React', path: rn_path, subspecs: [
 | |
|     'Core',
 | |
|     'CxxBridge',
 | |
|     'RCTAnimation',
 | |
|     'RCTActionSheet',
 | |
|     'RCTImage',
 | |
|     'RCTLinkingIOS',
 | |
|     'RCTNetwork',
 | |
|     'RCTSettings',
 | |
|     'RCTText',
 | |
|     'RCTVibration',
 | |
|     'RCTWebSocket',
 | |
|     'RCTPushNotification',
 | |
|     'RCTCameraRoll',
 | |
|     'RCTSettings',
 | |
|     'RCTBlob',
 | |
|     'RCTGeolocation',
 | |
|     'DevSupport'
 | |
|   ]
 | |
| 
 | |
|   pod 'react-native-video/VideoCaching', :path => '../../../react-native-video.podspec'
 | |
| end
 |