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 794B

1234567891011121314151617181920212223242526
  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, '10.0'
  4. target 'Campus' do
  5. config = use_native_modules!
  6. use_react_native!(:path => config["reactNativePath"])
  7. # Permissions
  8. permissions_path = '../node_modules/react-native-permissions/ios'
  9. pod 'Permission-Notifications', :path => "#{permissions_path}/Notifications.podspec"
  10. pod 'Permission-Camera', :path => "#{permissions_path}/Camera.podspec"
  11. # Enables Flipper.
  12. #
  13. # Note that if you have use_frameworks! enabled, Flipper will not work and
  14. # you should disable these next few lines.
  15. # use_flipper!
  16. # post_install do |installer|
  17. # flipper_post_install(installer)
  18. # end
  19. end