Podfile 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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 'Umora' 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. pod 'RNShare', :path => '../node_modules/react-native-share'
  12. permissions_path = '../node_modules/react-native-permissions/ios'
  13. pod 'Permission-Camera', :path => "#{permissions_path}/Camera"
  14. pod 'Permission-Microphone', :path => "#{permissions_path}/Microphone"
  15. pod 'Permission-Notifications', :path => "#{permissions_path}/Notifications"
  16. pod 'react-native-notification-sounds', :path => '../node_modules/react-native-notification-sounds'
  17. pod 'MMKV'
  18. target 'UmoraTests' do
  19. inherit! :complete
  20. # Pods for testing
  21. end
  22. # Enables Flipper.
  23. #
  24. # Note that if you have use_frameworks! enabled, Flipper will not work and
  25. # you should disable the next line.
  26. use_flipper!()
  27. post_install do |installer|
  28. react_native_post_install(installer)
  29. end
  30. end