No Description

Podfile 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # Uncomment the next line to define a global platform for your project
  2. platform :ios, '9.0'
  3. react_native_path = "../node_modules/react-native"
  4. project "simpleDemo.xcodeproj"
  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. #target 'simpleDemo-tvOSTests' do
  10. # inherit! :search_paths
  11. # # Pods for testing
  12. #end
  13. pod "react-native-agora", path: "../../../"
  14. pod 'yoga', path: '../node_modules/react-native/ReactCommon/yoga/Yoga.podspec'
  15. pod 'React', path: '../node_modules/react-native'
  16. #pod "React", path: react_native_path
  17. #%w(DoubleConversion Folly glog).each do |lib_name|
  18. # pod lib_name, podspec: "#{react_native_path}/third-party-podspecs/#{lib_name}.podspec"
  19. #end
  20. target 'simpleDemoTests' do
  21. inherit! :search_paths
  22. # Pods for testing
  23. end
  24. end
  25. target 'simpleDemo-tvOS' do
  26. # Uncomment the next line if you're using Swift or would like to use dynamic frameworks
  27. # use_frameworks!
  28. # Pods for simpleDemo-tvOS
  29. target 'simpleDemo-tvOSTests' do
  30. inherit! :search_paths
  31. # Pods for testing
  32. end
  33. end