Advertisement
Guest User

Untitled

a guest
Sep 8th, 2021
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  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. require_relative '../node_modules/react-native-unimodules/cocoapods.rb'
  4.  
  5. # platform :ios, '10.0'
  6. platform :ios, '11.0'
  7.  
  8. target 'DCGymAppFrontend' do
  9. config = use_native_modules!
  10.  
  11. use_react_native!(
  12. :path => config[:reactNativePath],
  13. # to enable hermes on iOS, change `false` to `true` and then install pods
  14. :hermes_enabled => false
  15. )
  16.  
  17. pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'
  18.  
  19. pod 'react-native-safe-area-context', :path => '../node_modules/react-native-safe-area-context'
  20.  
  21. pod 'react-native-webview', :path => '../node_modules/react-native-webview'
  22.  
  23. pod 'react-native-encrypted-storage', :path => '../node_modules/react-native-encrypted-storage'
  24.  
  25. pod 'RNSVG', :path => '../node_modules/react-native-svg'
  26.  
  27. # pod 'react-native-vlc-media-player', :path => '../node_modules/react-native-vlc-media-player'
  28.  
  29. target 'DCGymAppFrontendTests' do
  30. use_unimodules!
  31. inherit! :complete
  32. # Pods for testing
  33. end
  34.  
  35. # Enables Flipper.
  36. #
  37. # Note that if you have use_frameworks! enabled, Flipper will not work and
  38. # you should disable the next line.
  39. use_flipper!()
  40.  
  41. post_install do |installer|
  42. react_native_post_install(installer)
  43. end
  44. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement