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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. # React Native and its dependencies
  13. #
  14. pod 'React', :path => '../node_modules/react-native', :subspecs => [
  15. 'Core',
  16. 'CxxBridge',
  17. 'DevSupport',
  18. 'RCTActionSheet',
  19. 'RCTAnimation',
  20. 'RCTImage',
  21. 'RCTLinkingIOS',
  22. 'RCTNetwork',
  23. 'RCTText',
  24. 'RCTWebSocket',
  25. ]
  26. pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
  27. pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
  28. pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec'
  29. pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec'
  30. # React Native plugins
  31. #
  32. pod 'react-native-background-timer', :path => '../node_modules/react-native-background-timer'
  33. pod 'react-native-calendar-events', :path => '../node_modules/react-native-calendar-events'
  34. pod 'react-native-fast-image', :path => '../node_modules/react-native-fast-image'
  35. pod 'react-native-keep-awake', :path => '../node_modules/react-native-keep-awake'
  36. pod 'react-native-webview', :path => '../node_modules/react-native-webview'
  37. pod 'react-native-webrtc', :path => '../node_modules/react-native-webrtc'
  38. pod 'BVLinearGradient', :path => '../node_modules/react-native-linear-gradient'
  39. pod 'RNCAsyncStorage', :path => '../node_modules/@react-native-community/async-storage'
  40. pod 'RNGoogleSignin', :path => '../node_modules/react-native-google-signin'
  41. pod 'RNSound', :path => '../node_modules/react-native-sound'
  42. pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'
  43. pod 'RNWatch', :path => '../node_modules/react-native-watch-connectivity'
  44. # Native pod dependencies
  45. #
  46. pod 'Amplitude-iOS', '~> 4.0.4'
  47. pod 'ObjectiveDropboxOfficial', '~> 3.9.4'
  48. end
  49. post_install do |installer|
  50. installer.pods_project.targets.each do |target|
  51. target.build_configurations.each do |config|
  52. config.build_settings['ENABLE_BITCODE'] = 'YES'
  53. end
  54. end
  55. end