Advertisement
tengkusyafiq

Untitled

Oct 10th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 2.84 KB | None | 0 0
  1. platform :ios, '9.0'
  2. require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
  3.  
  4. target 'OnOn-RiderApp' do
  5.   # Pods for OnOn-RiderApp
  6.   pod 'FBLazyVector', :path => "../node_modules/react-native/Libraries/FBLazyVector"
  7.   pod 'FBReactNativeSpec', :path => "../node_modules/react-native/Libraries/FBReactNativeSpec"
  8.   pod 'RCTRequired', :path => "../node_modules/react-native/Libraries/RCTRequired"
  9.   pod 'RCTTypeSafety', :path => "../node_modules/react-native/Libraries/TypeSafety"
  10.   pod 'React', :path => '../node_modules/react-native/'
  11.   pod 'React-Core', :path => '../node_modules/react-native/'
  12.   pod 'React-CoreModules', :path => '../node_modules/react-native/React/CoreModules'
  13.   pod 'React-Core/DevSupport', :path => '../node_modules/react-native/'
  14.   pod 'React-RCTActionSheet', :path => '../node_modules/react-native/Libraries/ActionSheetIOS'
  15.   pod 'React-RCTAnimation', :path => '../node_modules/react-native/Libraries/NativeAnimation'
  16.   pod 'React-RCTBlob', :path => '../node_modules/react-native/Libraries/Blob'
  17.   pod 'React-RCTImage', :path => '../node_modules/react-native/Libraries/Image'
  18.   pod 'React-RCTLinking', :path => '../node_modules/react-native/Libraries/LinkingIOS'
  19.   pod 'React-RCTNetwork', :path => '../node_modules/react-native/Libraries/Network'
  20.   pod 'React-RCTSettings', :path => '../node_modules/react-native/Libraries/Settings'
  21.   pod 'React-RCTText', :path => '../node_modules/react-native/Libraries/Text'
  22.   pod 'React-RCTVibration', :path => '../node_modules/react-native/Libraries/Vibration'
  23.   pod 'React-Core/RCTWebSocket', :path => '../node_modules/react-native/'
  24.   pod 'React-cxxreact', :path => '../node_modules/react-native/ReactCommon/cxxreact'
  25.   pod 'React-jsi', :path => '../node_modules/react-native/ReactCommon/jsi'
  26.   pod 'React-jsiexecutor', :path => '../node_modules/react-native/ReactCommon/jsiexecutor'
  27.   pod 'React-jsinspector', :path => '../node_modules/react-native/ReactCommon/jsinspector'
  28.   pod 'ReactCommon/jscallinvoker', :path => "../node_modules/react-native/ReactCommon"
  29.   pod 'ReactCommon/turbomodule/core', :path => "../node_modules/react-native/ReactCommon"
  30.   pod 'Yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
  31.   pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
  32.   pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec'
  33.   pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec'
  34.  
  35.   pod 'RNBackgroundFetch', :path => '../node_modules/react-native-background-fetch'
  36.  
  37.   pod 'RNSVG', :path => '../node_modules/react-native-svg'
  38.  
  39.   pod 'RNReanimated', :path => '../node_modules/react-native-reanimated'
  40.  
  41.   target 'OnOn-RiderAppTests' do
  42.     inherit! :search_paths
  43.     # Pods for testing
  44.   end
  45.  
  46.   use_native_modules!
  47. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement