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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. platform :ios, '11.0'
  2. workspace 'jitsi-meet'
  3. require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
  4. target 'jitsi-meet' do
  5. project 'app/app.xcodeproj'
  6. pod 'Firebase/Analytics', '~> 6.33.0'
  7. pod 'Firebase/Crashlytics', '~> 6.33.0'
  8. pod 'Firebase/DynamicLinks', '~> 6.33.0'
  9. end
  10. target 'JitsiMeet' do
  11. project 'sdk/sdk.xcodeproj'
  12. # React Native and its dependencies
  13. #
  14. pod 'FBLazyVector', :path => '../node_modules/react-native/Libraries/FBLazyVector/'
  15. pod 'FBReactNativeSpec', :path => '../node_modules/react-native/Libraries/FBReactNativeSpec/'
  16. pod 'RCTRequired', :path => '../node_modules/react-native/Libraries/RCTRequired/'
  17. pod 'RCTTypeSafety', :path => '../node_modules/react-native/Libraries/TypeSafety/'
  18. pod 'React', :path => '../node_modules/react-native/'
  19. pod 'ReactCommon', :path => '../node_modules/react-native/ReactCommon', :subspecs => [
  20. 'turbomodule'
  21. ]
  22. pod 'React-Core', :path => '../node_modules/react-native/', :subspecs => [
  23. 'CoreModulesHeaders',
  24. 'DevSupport',
  25. 'RCTWebSocket'
  26. ]
  27. pod 'React-CoreModules', :path => '../node_modules/react-native/React/CoreModules'
  28. pod 'React-RCTActionSheet', :path => '../node_modules/react-native/Libraries/ActionSheetIOS'
  29. pod 'React-RCTAnimation', :path => '../node_modules/react-native/Libraries/NativeAnimation'
  30. pod 'React-RCTBlob', :path => '../node_modules/react-native/Libraries/Blob'
  31. pod 'React-RCTImage', :path => '../node_modules/react-native/Libraries/Image'
  32. pod 'React-RCTLinking', :path => '../node_modules/react-native/Libraries/LinkingIOS'
  33. pod 'React-RCTNetwork', :path => '../node_modules/react-native/Libraries/Network'
  34. pod 'React-RCTSettings', :path => '../node_modules/react-native/Libraries/Settings'
  35. pod 'React-RCTText', :path => '../node_modules/react-native/Libraries/Text'
  36. pod 'React-RCTVibration', :path => '../node_modules/react-native/Libraries/Vibration'
  37. pod 'React-cxxreact', :path => '../node_modules/react-native/ReactCommon/cxxreact'
  38. pod 'React-jsi', :path => '../node_modules/react-native/ReactCommon/jsi'
  39. pod 'React-jsiexecutor', :path => '../node_modules/react-native/ReactCommon/jsiexecutor'
  40. pod 'React-jsinspector', :path => '../node_modules/react-native/ReactCommon/jsinspector'
  41. pod 'Yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
  42. pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
  43. pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec'
  44. pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec'
  45. # React Native plugins
  46. #
  47. pod 'react-native-background-timer', :path => '../node_modules/react-native-background-timer'
  48. pod 'react-native-calendar-events', :path => '../node_modules/react-native-calendar-events'
  49. pod 'react-native-keep-awake', :path => '../node_modules/react-native-keep-awake'
  50. pod 'react-native-netinfo', :path => '../node_modules/@react-native-community/netinfo'
  51. pod 'react-native-webview', :path => '../node_modules/react-native-webview'
  52. pod 'react-native-webrtc', :path => '../node_modules/react-native-webrtc'
  53. pod 'BVLinearGradient', :path => '../node_modules/react-native-linear-gradient'
  54. pod 'RNCAsyncStorage', :path => '../node_modules/@react-native-community/async-storage'
  55. pod 'RNGoogleSignin', :path => '../node_modules/@react-native-community/google-signin'
  56. pod 'RNSound', :path => '../node_modules/react-native-sound'
  57. pod 'RNSVG', :path => '../node_modules/react-native-svg'
  58. pod 'RNWatch', :path => '../node_modules/react-native-watch-connectivity'
  59. pod 'RNDefaultPreference', :path => '../node_modules/react-native-default-preference'
  60. pod 'react-native-splash-screen', :path => '../node_modules/react-native-splash-screen'
  61. # Native pod dependencies
  62. #
  63. pod 'Amplitude-iOS', '~> 4.0.4'
  64. pod 'CocoaLumberjack', '~>3.5.3'
  65. pod 'ObjectiveDropboxOfficial', '~> 3.9.4'
  66. use_native_modules!
  67. end
  68. post_install do |installer|
  69. installer.pods_project.targets.each do |target|
  70. target.build_configurations.each do |config|
  71. config.build_settings['ENABLE_BITCODE'] = 'YES'
  72. config.build_settings['SUPPORTS_MACCATALYST'] = 'NO'
  73. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
  74. end
  75. end
  76. end