Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233343536
  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. 'RCTActionSheet',
  8. 'RCTAnimation',
  9. 'RCTImage',
  10. 'RCTLinkingIOS',
  11. 'RCTNetwork',
  12. 'RCTText',
  13. 'RCTWebSocket',
  14. ]
  15. pod 'Yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
  16. pod 'react-native-background-timer',
  17. :path => '../node_modules/react-native-background-timer'
  18. pod 'react-native-fetch-blob',
  19. :path => '../node_modules/react-native-fetch-blob'
  20. pod 'react-native-keep-awake',
  21. :path => '../node_modules/react-native-keep-awake'
  22. pod 'react-native-webrtc', :path => '../node_modules/react-native-webrtc'
  23. pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'
  24. end
  25. post_install do |installer|
  26. installer.pods_project.targets.each do |target|
  27. target.build_configurations.each do |config|
  28. config.build_settings['ENABLE_BITCODE'] = 'NO'
  29. end
  30. end
  31. end