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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. platform :ios, '10.0'
  2. workspace 'jitsi-meet'
  3. target 'jitsi-meet' do
  4. project 'app/app.xcodeproj'
  5. pod 'Crashlytics', '~> 3.12.0'
  6. pod 'Fabric', '~> 1.9.0'
  7. pod 'Firebase/Core', '~> 5.18.0'
  8. pod 'Firebase/DynamicLinks', '~> 5.18.0'
  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', '~> 3.9.4'
  33. pod 'react-native-background-timer',
  34. :path => '../node_modules/react-native-background-timer'
  35. pod 'react-native-calendar-events',
  36. :path => '../node_modules/react-native-calendar-events'
  37. pod 'react-native-fast-image',
  38. :path => '../node_modules/react-native-fast-image'
  39. pod 'react-native-keep-awake',
  40. :path => '../node_modules/react-native-keep-awake'
  41. pod 'react-native-webview',
  42. :path => '../node_modules/react-native-webview'
  43. pod 'BVLinearGradient',
  44. :path => '../node_modules/react-native-linear-gradient'
  45. pod 'react-native-webrtc', :path => '../node_modules/react-native-webrtc'
  46. pod 'RNGoogleSignin',
  47. :path => '../node_modules/react-native-google-signin'
  48. pod 'RNSound', :path => '../node_modules/react-native-sound'
  49. pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'
  50. pod 'RNWatch', :path => '../node_modules/react-native-watch-connectivity'
  51. end
  52. post_install do |installer|
  53. installer.pods_project.targets.each do |target|
  54. target.build_configurations.each do |config|
  55. config.build_settings['ENABLE_BITCODE'] = 'YES'
  56. end
  57. end
  58. end