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 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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-locale-detector',
  25. :path => '../node_modules/react-native-locale-detector'
  26. pod 'react-native-webrtc', :path => '../node_modules/react-native-webrtc'
  27. pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'
  28. end
  29. post_install do |installer|
  30. installer.pods_project.targets.each do |target|
  31. target.build_configurations.each do |config|
  32. config.build_settings['ENABLE_BITCODE'] = 'NO'
  33. end
  34. end
  35. end