Application Android et IOS pour l'amicale des élèves https://play.google.com/store/apps/details?id=fr.amicaleinsat.application
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 887B

12345678910111213141516171819202122232425262728293031
  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 'Campus' 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 => true
  10. )
  11. # Permissions
  12. permissions_path = '../node_modules/react-native-permissions/ios'
  13. pod 'Permission-Notifications', :path => "#{permissions_path}/Notifications"
  14. pod 'Permission-Camera', :path => "#{permissions_path}/Camera"
  15. # Enables Flipper.
  16. #
  17. # Note that if you have use_frameworks! enabled, Flipper will not work and
  18. # you should disable the next line.
  19. # use_flipper!()
  20. post_install do |installer|
  21. react_native_post_install(installer)
  22. end
  23. end