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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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-keep-awake', :path => '../node_modules/react-native-keep-awake'
  35. pod 'react-native-webview', :path => '../node_modules/react-native-webview'
  36. pod 'react-native-webrtc', :path => '../node_modules/react-native-webrtc'
  37. pod 'BVLinearGradient', :path => '../node_modules/react-native-linear-gradient'
  38. pod 'RNCAsyncStorage', :path => '../node_modules/@react-native-community/async-storage'
  39. pod 'RNGoogleSignin', :path => '../node_modules/react-native-google-signin'
  40. pod 'RNSound', :path => '../node_modules/react-native-sound'
  41. pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'
  42. pod 'RNWatch', :path => '../node_modules/react-native-watch-connectivity'
  43. # Native pod dependencies
  44. #
  45. pod 'Amplitude-iOS', '~> 4.0.4'
  46. pod 'ObjectiveDropboxOfficial', '~> 3.9.4'
  47. end
  48. post_install do |installer|
  49. installer.pods_project.targets.each do |target|
  50. target.build_configurations.each do |config|
  51. config.build_settings['ENABLE_BITCODE'] = 'YES'
  52. end
  53. end
  54. end