您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Podfile 4.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. platform :ios, '12.0'
  2. workspace 'jitsi-meet'
  3. require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
  4. install! 'cocoapods', :deterministic_uuids => false
  5. target 'JitsiMeet' do
  6. project 'app/app.xcodeproj'
  7. pod 'Firebase/Analytics', '~> 6.33.0'
  8. pod 'Firebase/Crashlytics', '~> 6.33.0'
  9. pod 'Firebase/DynamicLinks', '~> 6.33.0'
  10. end
  11. target 'JitsiMeetSDK' 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. ], :modular_headers => true
  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 'amplitude-react-native', :path => '../node_modules/@amplitude/react-native'
  49. pod 'react-native-background-timer', :path => '../node_modules/react-native-background-timer'
  50. pod 'react-native-calendar-events', :path => '../node_modules/react-native-calendar-events'
  51. pod 'react-native-keep-awake', :path => '../node_modules/react-native-keep-awake'
  52. pod 'react-native-netinfo', :path => '../node_modules/@react-native-community/netinfo'
  53. pod 'react-native-performance', :path => '../node_modules/react-native-performance/ios'
  54. pod 'react-native-slider', :path => '../node_modules/@react-native-community/slider'
  55. pod 'react-native-splash-screen', :path => '../node_modules/react-native-splash-screen'
  56. pod 'react-native-video', :path => '../node_modules/react-native-video/react-native-video.podspec'
  57. pod 'react-native-webview', :path => '../node_modules/react-native-webview'
  58. pod 'react-native-webrtc', :path => '../node_modules/react-native-webrtc'
  59. pod 'RNCAsyncStorage', :path => '../node_modules/@react-native-async-storage/async-storage'
  60. pod 'RNDeviceInfo', :path => '../node_modules/react-native-device-info'
  61. pod 'RNGoogleSignin', :path => '../node_modules/@react-native-community/google-signin'
  62. pod 'RNSound', :path => '../node_modules/react-native-sound'
  63. pod 'RNSVG', :path => '../node_modules/react-native-svg'
  64. pod 'RNWatch', :path => '../node_modules/react-native-watch-connectivity'
  65. pod 'RNDefaultPreference', :path => '../node_modules/react-native-default-preference'
  66. # Native pod dependencies
  67. #
  68. pod 'CocoaLumberjack', '~>3.5.3'
  69. pod 'ObjectiveDropboxOfficial', '~>6.1.0'
  70. use_native_modules!
  71. end
  72. post_install do |installer|
  73. installer.pods_project.targets.each do |target|
  74. target.build_configurations.each do |config|
  75. config.build_settings['ENABLE_BITCODE'] = 'YES'
  76. config.build_settings['SUPPORTS_MACCATALYST'] = 'NO'
  77. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
  78. end
  79. end
  80. end