You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 regels
735 B

  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, '11.0'
  4. target 'LessPass' do
  5. config = use_native_modules!
  6. use_react_native!(
  7. :path => config[:reactNativePath],
  8. # to enable hermes on iOS, change `false` to `true` and then install pods
  9. :hermes_enabled => false
  10. )
  11. use_native_modules!
  12. # Enables Flipper.
  13. #
  14. # Note that if you have use_frameworks! enabled, Flipper will not work and
  15. # you should disable the next line.
  16. use_flipper!()
  17. post_install do |installer|
  18. react_native_post_install(installer)
  19. __apply_Xcode_12_5_M1_post_install_workaround(installer)
  20. end
  21. end