Keine Beschreibung

Podfile 743B

123456789101112131415161718192021222324
  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. target 'simpleDemoTests' do
  16. inherit! :search_paths
  17. # Pods for testing
  18. end
  19. end