Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Podfile 1.0KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. platform :ios, '9.0'
  2. workspace 'jitsi-meet'
  3. target 'JitsiMeet' do
  4. project 'sdk/sdk.xcodeproj'
  5. pod 'React', :path => '../node_modules/react-native', :subspecs => [
  6. 'Core',
  7. 'BatchedBridge',
  8. 'DevSupport',
  9. 'RCTActionSheet',
  10. 'RCTAnimation',
  11. 'RCTImage',
  12. 'RCTLinkingIOS',
  13. 'RCTNetwork',
  14. 'RCTText',
  15. 'RCTWebSocket',
  16. ]
  17. pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
  18. pod 'react-native-background-timer',
  19. :path => '../node_modules/react-native-background-timer'
  20. pod 'react-native-fetch-blob',
  21. :path => '../node_modules/react-native-fetch-blob'
  22. pod 'react-native-keep-awake',
  23. :path => '../node_modules/react-native-keep-awake'
  24. pod 'react-native-webrtc', :path => '../node_modules/react-native-webrtc'
  25. pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'
  26. end
  27. post_install do |installer|
  28. installer.pods_project.targets.each do |target|
  29. target.build_configurations.each do |config|
  30. config.build_settings['ENABLE_BITCODE'] = 'NO'
  31. end
  32. end
  33. end