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.4KB

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