Nenhuma descrição

Podfile 780B

12345678910111213141516171819202122232425
  1. react_native_path = '../node_modules/react-native'
  2. project 'simpleDemo.xcodeproj'
  3. # Uncomment the next line to define a global platform for your project
  4. platform :ios, '9.0'
  5. target 'simpleDemo' do
  6. # Uncomment the next line if you're using Swift or would like to use dynamic frameworks
  7. use_frameworks!
  8. # Pods for simpleDemo
  9. pod 'react-native-agora', path: '../node_modules/react-native-agora'
  10. pod 'React', path: react_native_path
  11. pod 'yoga', path: "#{react_native_path}/ReactCommon/yoga"
  12. %w(DoubleConversion Folly glog).each do |lib_name|
  13. pod lib_name, podspec: "#{react_native_path}/third-party-podspecs/#{lib_name}.podspec"
  14. end
  15. #pod 'AgoraRtcEngine_iOS', '2.3.3'
  16. target 'simpleDemoTests' do
  17. inherit! :search_paths
  18. # Pods for testing
  19. end
  20. end