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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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-netinfo', :path => '../node_modules/@react-native-community/netinfo'
  42. pod 'react-native-webview', :path => '../node_modules/react-native-webview'
  43. pod 'react-native-webrtc', :path => '../node_modules/react-native-webrtc'
  44. pod 'BVLinearGradient', :path => '../node_modules/react-native-linear-gradient'
  45. pod 'RNCAsyncStorage', :path => '../node_modules/@react-native-community/async-storage'
  46. pod 'RNGoogleSignin', :path => '../node_modules/react-native-google-signin'
  47. pod 'RNSound', :path => '../node_modules/react-native-sound'
  48. pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'
  49. pod 'RNWatch', :path => '../node_modules/react-native-watch-connectivity'
  50. # Native pod dependencies
  51. #
  52. pod 'Amplitude-iOS', '~> 4.0.4'
  53. pod 'ObjectiveDropboxOfficial', '~> 3.9.4'
  54. use_native_modules!
  55. end
  56. post_install do |installer|
  57. installer.pods_project.targets.each do |target|
  58. target.build_configurations.each do |config|
  59. config.build_settings['ENABLE_BITCODE'] = 'YES'
  60. end
  61. end
  62. end