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.

1234567891011121314151617181920212223242526272829303132
  1. platform :ios, '9.0'
  2. workspace 'jitsi-meet'
  3. project 'Jitsi Meet SDK.xcodeproj'
  4. target 'JitsiMeet' do
  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', :path => '../node_modules/react-native-background-timer'
  17. pod 'react-native-keep-awake', :path => '../node_modules/react-native-keep-awake'
  18. pod 'react-native-webrtc', :path => '../node_modules/react-native-webrtc'
  19. pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'
  20. end
  21. post_install do |installer|
  22. installer.pods_project.targets.each do |target|
  23. target.build_configurations.each do |config|
  24. config.build_settings['ENABLE_BITCODE'] = 'NO'
  25. end
  26. end
  27. end