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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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 'React', :path => '../node_modules/react-native/'
  16. pod 'React-Core', :path => '../node_modules/react-native/React'
  17. pod 'React-DevSupport', :path => '../node_modules/react-native/React'
  18. pod 'React-RCTActionSheet', :path => '../node_modules/react-native/Libraries/ActionSheetIOS'
  19. pod 'React-RCTAnimation', :path => '../node_modules/react-native/Libraries/NativeAnimation'
  20. pod 'React-RCTBlob', :path => '../node_modules/react-native/Libraries/Blob'
  21. pod 'React-RCTImage', :path => '../node_modules/react-native/Libraries/Image'
  22. pod 'React-RCTLinking', :path => '../node_modules/react-native/Libraries/LinkingIOS'
  23. pod 'React-RCTNetwork', :path => '../node_modules/react-native/Libraries/Network'
  24. pod 'React-RCTSettings', :path => '../node_modules/react-native/Libraries/Settings'
  25. pod 'React-RCTText', :path => '../node_modules/react-native/Libraries/Text'
  26. pod 'React-RCTVibration', :path => '../node_modules/react-native/Libraries/Vibration'
  27. pod 'React-RCTWebSocket', :path => '../node_modules/react-native/Libraries/WebSocket'
  28. pod 'React-cxxreact', :path => '../node_modules/react-native/ReactCommon/cxxreact'
  29. pod 'React-jsi', :path => '../node_modules/react-native/ReactCommon/jsi'
  30. pod 'React-jsiexecutor', :path => '../node_modules/react-native/ReactCommon/jsiexecutor'
  31. pod 'React-jsinspector', :path => '../node_modules/react-native/ReactCommon/jsinspector'
  32. pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
  33. pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
  34. pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec'
  35. pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec'
  36. # React Native plugins
  37. #
  38. pod 'react-native-background-timer', :path => '../node_modules/react-native-background-timer'
  39. pod 'react-native-calendar-events', :path => '../node_modules/react-native-calendar-events'
  40. pod 'react-native-keep-awake', :path => '../node_modules/react-native-keep-awake'
  41. pod 'react-native-webview', :path => '../node_modules/react-native-webview'
  42. pod 'react-native-webrtc', :path => '../node_modules/react-native-webrtc'
  43. pod 'BVLinearGradient', :path => '../node_modules/react-native-linear-gradient'
  44. pod 'RNCAsyncStorage', :path => '../node_modules/@react-native-community/async-storage'
  45. pod 'RNGoogleSignin', :path => '../node_modules/react-native-google-signin'
  46. pod 'RNSound', :path => '../node_modules/react-native-sound'
  47. pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'
  48. pod 'RNWatch', :path => '../node_modules/react-native-watch-connectivity'
  49. # Native pod dependencies
  50. #
  51. pod 'Amplitude-iOS', '~> 4.0.4'
  52. pod 'ObjectiveDropboxOfficial', '~> 3.9.4'
  53. use_native_modules!
  54. end
  55. post_install do |installer|
  56. installer.pods_project.targets.each do |target|
  57. target.build_configurations.each do |config|
  58. config.build_settings['ENABLE_BITCODE'] = 'YES'
  59. end
  60. end
  61. end