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.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. platform :ios, '10.0'
  2. workspace 'jitsi-meet'
  3. target 'jitsi-meet' do
  4. project 'app/app.xcodeproj'
  5. pod 'Crashlytics'
  6. pod 'Fabric'
  7. pod 'Firebase/Core'
  8. pod 'Firebase/DynamicLinks'
  9. end
  10. target 'JitsiMeet' do
  11. project 'sdk/sdk.xcodeproj'
  12. pod 'React', :path => '../node_modules/react-native', :subspecs => [
  13. 'Core',
  14. 'CxxBridge',
  15. 'DevSupport',
  16. 'RCTActionSheet',
  17. 'RCTAnimation',
  18. 'RCTImage',
  19. 'RCTLinkingIOS',
  20. 'RCTNetwork',
  21. 'RCTText',
  22. 'RCTWebSocket',
  23. ]
  24. pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
  25. pod 'DoubleConversion',
  26. :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
  27. pod 'glog',
  28. :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec'
  29. pod 'Folly',
  30. :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec'
  31. pod 'Amplitude-iOS', '~> 4.0.4'
  32. pod 'ObjectiveDropboxOfficial'
  33. pod 'react-native-background-timer',
  34. :path => '../node_modules/react-native-background-timer'
  35. pod 'react-native-fast-image',
  36. :path => '../node_modules/react-native-fast-image'
  37. pod 'react-native-keep-awake',
  38. :path => '../node_modules/react-native-keep-awake'
  39. pod 'BVLinearGradient',
  40. :path => '../node_modules/react-native-linear-gradient'
  41. pod 'react-native-webrtc', :path => '../node_modules/react-native-webrtc'
  42. pod 'RNGoogleSignin',
  43. :path => '../node_modules/react-native-google-signin'
  44. pod 'RNSound', :path => '../node_modules/react-native-sound'
  45. pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'
  46. pod 'react-native-calendar-events',
  47. :path => '../node_modules/react-native-calendar-events'
  48. end
  49. post_install do |installer|
  50. installer.pods_project.targets.each do |target|
  51. target.build_configurations.each do |config|
  52. config.build_settings['ENABLE_BITCODE'] = 'NO'
  53. end
  54. end
  55. end