Podfile 622B

1234567891011121314151617181920212223
  1. require_relative '../../node_modules/react-native/scripts/react_native_pods'
  2. require_relative '../../node_modules/@react-native-community/cli-platform-ios/native_modules'
  3. platform :ios, '10.0'
  4. target 'SafeAreaViewExample' do
  5. config = use_native_modules!
  6. use_react_native!(:path => config["reactNativePath"])
  7. pod 'react-native-safe-area-context', :path => '../../'
  8. # Enables Flipper.
  9. #
  10. # Note that if you have use_frameworks! enabled, Flipper will not work and
  11. # you should disable these next few lines.
  12. # use_flipper!
  13. # post_install do |installer|
  14. # flipper_post_install(installer)
  15. # end
  16. end