| 12345678910111213141516171819202122232425262728293031323334353637383940414243 | 
							- # Uncomment the next line to define a global platform for your project
 - platform :ios, '9.0'
 - react_native_path = "../node_modules/react-native"
 - project "simpleDemo.xcodeproj"
 - 
 - target 'simpleDemo' do
 -   # Uncomment the next line if you're using Swift or would like to use dynamic frameworks
 -   # use_frameworks!
 - 
 -   # Pods for simpleDemo
 - 
 -   #target 'simpleDemo-tvOSTests' do
 -   #  inherit! :search_paths
 -   #  # Pods for testing
 -   #end
 -   pod "react-native-agora", path: "../../../"
 -   pod 'yoga', path: '../node_modules/react-native/ReactCommon/yoga/Yoga.podspec'
 -   pod 'React', path: '../node_modules/react-native'
 -   #pod "React", path: react_native_path
 -   #%w(DoubleConversion Folly glog).each do |lib_name|
 -   #  pod lib_name, podspec: "#{react_native_path}/third-party-podspecs/#{lib_name}.podspec"
 -   #end
 - 
 -   target 'simpleDemoTests' do
 -     inherit! :search_paths
 -     # Pods for testing
 -   end
 - 
 - end
 - 
 - target 'simpleDemo-tvOS' do
 -   # Uncomment the next line if you're using Swift or would like to use dynamic frameworks
 -   # use_frameworks!
 - 
 -   # Pods for simpleDemo-tvOS
 - 
 -   target 'simpleDemo-tvOSTests' do
 -     inherit! :search_paths
 -     # Pods for testing
 -   end
 - 
 - end
 
 
  |