70 lines
2.3 KiB
Ruby
70 lines
2.3 KiB
Ruby
# Uncomment the next line to define a global platform for your project
|
|
platform :ios, '9.0'
|
|
|
|
target 'iLinkWorld' do
|
|
# Uncomment the next line if you're using Swift or would like to use dynamic frameworks
|
|
use_frameworks!
|
|
|
|
pod 'React', :path => '../node_modules/react-native', :subspecs => [
|
|
'Core',
|
|
'CxxBridge', # Include this for RN >= 0.47
|
|
'DevSupport', # Include this to enable In-App Devmenu if RN >= 0.43
|
|
'RCTText',
|
|
'RCTNetwork',
|
|
'RCTImage',
|
|
'RCTGeolocation',
|
|
'RCTWebSocket', # needed for debugging
|
|
# Add any other subspecs you want to use in your project
|
|
]
|
|
# Explicitly include Yoga if you are using RN >= 0.42.0
|
|
pod "yoga", :path => "../node_modules/react-native/ReactCommon/yoga"
|
|
|
|
# Third party deps podspec link
|
|
pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
|
|
pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec'
|
|
pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec'
|
|
# pod 'react-native-fbsdk', :path => '../node_modules/react-native-fbsdk'
|
|
|
|
pod 'lottie-react-native', :path => '../node_modules/lottie-react-native'
|
|
|
|
|
|
pod 'RNGestureHandler', :path => '../node_modules/react-native-gesture-handler'
|
|
|
|
pod 'react-native-maps', :path => '../node_modules/react-native-maps'
|
|
pod 'RNReanimated', :path => '../node_modules/react-native-reanimated'
|
|
|
|
pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'
|
|
|
|
|
|
|
|
|
|
|
|
pod 'RNReanimated', :path => '../node_modules/react-native-reanimated'
|
|
|
|
pod 'RNSVG', :path => '../node_modules/react-native-svg'
|
|
|
|
|
|
# pod 'ReactNativeFabric', :path => '../node_modules/react-native-fabric'
|
|
|
|
pod 'RNI18n', :path => '../node_modules/react-native-i18n'
|
|
|
|
pod 'RNDeviceInfo', :path => '../node_modules/react-native-device-info'
|
|
target 'iLinkWorld-tvOSTests' do
|
|
inherit! :search_paths
|
|
# Pods for testing
|
|
pod 'react-native-geolocation', :path => '../node_modules/@react-native-community/geolocation'
|
|
|
|
pod 'lottie-ios', :path => '../node_modules/lottie-ios'
|
|
|
|
end
|
|
|
|
target 'iLinkWorldTests' do
|
|
inherit! :search_paths
|
|
# Pods for testing
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|