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.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. platform :ios, '10.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. 'CxxBridge',
  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 'DoubleConversion',
  19. :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
  20. pod 'glog',
  21. :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec'
  22. pod 'Folly',
  23. :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec'
  24. pod 'ObjectiveDropboxOfficial'
  25. pod 'react-native-background-timer',
  26. :path => '../node_modules/react-native-background-timer'
  27. pod 'react-native-fast-image',
  28. :path => '../node_modules/react-native-fast-image'
  29. pod 'react-native-keep-awake',
  30. :path => '../node_modules/react-native-keep-awake'
  31. pod 'react-native-webrtc', :path => '../node_modules/react-native-webrtc'
  32. pod 'RNGoogleSignin',
  33. :path => '../node_modules/react-native-google-signin'
  34. pod 'RNSound', :path => '../node_modules/react-native-sound'
  35. pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'
  36. pod 'react-native-calendar-events',
  37. :path => '../node_modules/react-native-calendar-events'
  38. end
  39. post_install do |installer|
  40. installer.pods_project.targets.each do |target|
  41. target.build_configurations.each do |config|
  42. config.build_settings['ENABLE_BITCODE'] = 'NO'
  43. end
  44. end
  45. end