Podfile 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. platform :ios, '9.0'
  2. require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
  3. target 'emptyApp' do
  4. # Pods for emptyApp
  5. pod 'React', :path => '../node_modules/react-native/'
  6. pod 'React-Core', :path => '../node_modules/react-native/React'
  7. pod 'React-DevSupport', :path => '../node_modules/react-native/React'
  8. pod 'React-fishhook', :path => '../node_modules/react-native/Libraries/fishhook'
  9. pod 'React-RCTActionSheet', :path => '../node_modules/react-native/Libraries/ActionSheetIOS'
  10. pod 'React-RCTAnimation', :path => '../node_modules/react-native/Libraries/NativeAnimation'
  11. pod 'React-RCTBlob', :path => '../node_modules/react-native/Libraries/Blob'
  12. pod 'React-RCTImage', :path => '../node_modules/react-native/Libraries/Image'
  13. pod 'React-RCTLinking', :path => '../node_modules/react-native/Libraries/LinkingIOS'
  14. pod 'React-RCTNetwork', :path => '../node_modules/react-native/Libraries/Network'
  15. pod 'React-RCTSettings', :path => '../node_modules/react-native/Libraries/Settings'
  16. pod 'React-RCTText', :path => '../node_modules/react-native/Libraries/Text'
  17. pod 'React-RCTVibration', :path => '../node_modules/react-native/Libraries/Vibration'
  18. pod 'React-RCTWebSocket', :path => '../node_modules/react-native/Libraries/WebSocket'
  19. pod 'React-cxxreact', :path => '../node_modules/react-native/ReactCommon/cxxreact'
  20. pod 'React-jsi', :path => '../node_modules/react-native/ReactCommon/jsi'
  21. pod 'React-jsiexecutor', :path => '../node_modules/react-native/ReactCommon/jsiexecutor'
  22. pod 'React-jsinspector', :path => '../node_modules/react-native/ReactCommon/jsinspector'
  23. pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
  24. pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
  25. pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec'
  26. pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec'
  27. pod 'react-native-keep-awake', :path => '../node_modules/react-native-keep-awake'
  28. pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'
  29. pod 'react-native-fbsdk', :path => '../node_modules/react-native-fbsdk'
  30. pod 'RNNaverLogin', :path => '../node_modules/react-native-naver-login'
  31. target 'emptyAppTests' do
  32. inherit! :search_paths
  33. # Pods for testing
  34. end
  35. use_native_modules!
  36. end
  37. target 'emptyApp-tvOS' do
  38. # Pods for emptyApp-tvOS
  39. target 'emptyApp-tvOSTests' do
  40. inherit! :search_paths
  41. # Pods for testing
  42. end
  43. end