react-native-navigation的迁移库

Podfile 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. # Uncomment the next line to define a global platform for your project
  2. platform :ios, '10.0'
  3. # require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
  4. use_frameworks!
  5. def all_pods
  6. # Pods for playground
  7. pod 'FBLazyVector', :path => "../../node_modules/react-native/Libraries/FBLazyVector"
  8. pod 'FBReactNativeSpec', :path => "../../node_modules/react-native/Libraries/FBReactNativeSpec"
  9. pod 'RCTRequired', :path => "../../node_modules/react-native/Libraries/RCTRequired"
  10. pod 'RCTTypeSafety', :path => "../../node_modules/react-native/Libraries/TypeSafety"
  11. pod 'React', :path => '../../node_modules/react-native/'
  12. pod 'React-Core', :path => '../../node_modules/react-native/'
  13. pod 'React-CoreModules', :path => '../../node_modules/react-native/React/CoreModules'
  14. pod 'React-Core/DevSupport', :path => '../../node_modules/react-native/'
  15. pod 'React-RCTActionSheet', :path => '../../node_modules/react-native/Libraries/ActionSheetIOS'
  16. pod 'React-RCTAnimation', :path => '../../node_modules/react-native/Libraries/NativeAnimation'
  17. pod 'React-RCTBlob', :path => '../../node_modules/react-native/Libraries/Blob'
  18. pod 'React-RCTImage', :path => '../../node_modules/react-native/Libraries/Image'
  19. pod 'React-RCTLinking', :path => '../../node_modules/react-native/Libraries/LinkingIOS'
  20. pod 'React-RCTNetwork', :path => '../../node_modules/react-native/Libraries/Network'
  21. pod 'React-RCTSettings', :path => '../../node_modules/react-native/Libraries/Settings'
  22. pod 'React-RCTText', :path => '../../node_modules/react-native/Libraries/Text'
  23. pod 'React-RCTVibration', :path => '../../node_modules/react-native/Libraries/Vibration'
  24. pod 'React-Core/RCTWebSocket', :path => '../../node_modules/react-native/'
  25. pod 'React-cxxreact', :path => '../../node_modules/react-native/ReactCommon/cxxreact'
  26. pod 'React-jsi', :path => '../../node_modules/react-native/ReactCommon/jsi'
  27. pod 'React-jsiexecutor', :path => '../../node_modules/react-native/ReactCommon/jsiexecutor'
  28. pod 'React-jsinspector', :path => '../../node_modules/react-native/ReactCommon/jsinspector'
  29. pod 'ReactCommon/jscallinvoker', :path => "../../node_modules/react-native/ReactCommon"
  30. pod 'ReactCommon/turbomodule/core', :path => "../../node_modules/react-native/ReactCommon"
  31. pod 'Yoga', :path => '../../node_modules/react-native/ReactCommon/yoga'
  32. pod 'DoubleConversion', :podspec => '../../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
  33. pod 'glog', :podspec => '../../node_modules/react-native/third-party-podspecs/glog.podspec'
  34. pod 'Folly', :podspec => '../../node_modules/react-native/third-party-podspecs/Folly.podspec'
  35. pod 'ReactNativeNavigation', :path => '../../'
  36. pod 'ReactNativeKeyboardTrackingView', :path => '../../node_modules/react-native-keyboard-tracking-view'
  37. end
  38. target 'playground' do
  39. all_pods
  40. end
  41. target 'NavigationTests' do
  42. all_pods
  43. pod 'OCMock'
  44. end
  45. target 'NavigationIOS12Tests' do
  46. all_pods
  47. pod 'OCMock'
  48. end
  49. target 'SnapshotTests' do
  50. all_pods
  51. pod 'OCMock'
  52. use_frameworks!
  53. pod 'iOSSnapshotTestCase/Core'
  54. end