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

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