Application Android et IOS pour l'amicale des élèves
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.

Podfile 2.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. platform :ios, '10.0'
  2. require_relative '../node_modules/react-native-unimodules/cocoapods'
  3. require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
  4. target 'Campus' do
  5. rnPrefix = "../node_modules/react-native"
  6. # React Native and its dependencies
  7. pod 'FBLazyVector', :path => "#{rnPrefix}/Libraries/FBLazyVector"
  8. pod 'FBReactNativeSpec', :path => "#{rnPrefix}/Libraries/FBReactNativeSpec"
  9. pod 'RCTRequired', :path => "#{rnPrefix}/Libraries/RCTRequired"
  10. pod 'RCTTypeSafety', :path => "#{rnPrefix}/Libraries/TypeSafety"
  11. pod 'React', :path => "#{rnPrefix}/"
  12. pod 'React-Core', :path => "#{rnPrefix}/"
  13. pod 'React-CoreModules', :path => "#{rnPrefix}/React/CoreModules"
  14. pod 'React-RCTActionSheet', :path => "#{rnPrefix}/Libraries/ActionSheetIOS"
  15. pod 'React-RCTAnimation', :path => "#{rnPrefix}/Libraries/NativeAnimation"
  16. pod 'React-RCTBlob', :path => "#{rnPrefix}/Libraries/Blob"
  17. pod 'React-RCTImage', :path => "#{rnPrefix}/Libraries/Image"
  18. pod 'React-RCTLinking', :path => "#{rnPrefix}/Libraries/LinkingIOS"
  19. pod 'React-RCTNetwork', :path => "#{rnPrefix}/Libraries/Network"
  20. pod 'React-RCTSettings', :path => "#{rnPrefix}/Libraries/Settings"
  21. pod 'React-RCTText', :path => "#{rnPrefix}/Libraries/Text"
  22. pod 'React-RCTVibration', :path => "#{rnPrefix}/Libraries/Vibration"
  23. pod 'React-Core/RCTWebSocket', :path => "#{rnPrefix}/"
  24. pod 'React-Core/DevSupport', :path => "#{rnPrefix}/"
  25. pod 'React-cxxreact', :path => "#{rnPrefix}/ReactCommon/cxxreact"
  26. pod 'React-jsi', :path => "#{rnPrefix}/ReactCommon/jsi"
  27. pod 'React-jsiexecutor', :path => "#{rnPrefix}/ReactCommon/jsiexecutor"
  28. pod 'React-jsinspector', :path => "#{rnPrefix}/ReactCommon/jsinspector"
  29. pod 'ReactCommon/jscallinvoker', :path => "#{rnPrefix}/ReactCommon"
  30. pod 'ReactCommon/turbomodule/core', :path => "#{rnPrefix}/ReactCommon"
  31. pod 'Yoga', :path => "#{rnPrefix}/ReactCommon/yoga"
  32. pod 'DoubleConversion', :podspec => "#{rnPrefix}/third-party-podspecs/DoubleConversion.podspec"
  33. pod 'glog', :podspec => "#{rnPrefix}/third-party-podspecs/glog.podspec"
  34. pod 'Folly', :podspec => "#{rnPrefix}/third-party-podspecs/Folly.podspec"
  35. # Other native modules
  36. # Automatically detect installed unimodules
  37. use_unimodules!
  38. # react-native-cli autolinking
  39. use_native_modules!
  40. # Permissions
  41. permissions_path = '../node_modules/react-native-permissions/ios'
  42. pod 'Permission-Notifications', :path => "#{permissions_path}/Notifications.podspec"
  43. pod 'Permission-Camera', :path => "#{permissions_path}/Camera.podspec"
  44. end