12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- require_relative '../node_modules/react-native/scripts/react_native_pods'
- require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
- platform :ios, '10.0'
- target 'ReactMapDemo' do
- config = use_native_modules!
- use_react_native!(
- :path => config[:reactNativePath],
- # to enable hermes on iOS, change `false` to `true` and then install pods
- :hermes_enabled => false
- )
- pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'
- target 'ReactMapDemoTests' do
- inherit! :complete
- # Pods for testing
- end
- # Enables Flipper.
- #
- # Note that if you have use_frameworks! enabled, Flipper will not work and
- # you should disable the next line.
- use_flipper!()
- post_install do |installer|
- react_native_post_install(installer)
- end
- # Flexbox Layout Manager Used By React Native
- pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga/Yoga.podspec'
- # React Native
- pod 'React', path: '../node_modules/react-native', subspecs: [
- # Comment out any unneeded subspecs to reduce bundle size.
- 'Core',
- 'DevSupport',
- 'RCTActionSheet',
- 'RCTAnimation',
- 'RCTBlob',
- 'RCTCameraRoll',
- 'RCTGeolocation',
- 'RCTImage',
- 'RCTNetwork',
- 'RCTPushNotification',
- 'RCTSettings',
- 'RCTTest',
- 'RCTText',
- 'RCTVibration',
- 'RCTWebSocket',
- 'RCTLinkingIOS'
- ]
- # Mapbox
- pod 'react-native-mapbox-gl', :path => '../node_modules/@mapbox/react-native-mapbox-gl'
- end
|