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

Podfile 1.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. platform :ios, '9.0'
  2. workspace 'jitsi-meet'
  3. target 'JitsiMeet' do
  4. project 'sdk/sdk.xcodeproj'
  5. pod 'React', :path => '../node_modules/react-native', :subspecs => [
  6. 'Core',
  7. 'CxxBridge',
  8. 'DevSupport',
  9. 'RCTActionSheet',
  10. 'RCTAnimation',
  11. 'RCTImage',
  12. 'RCTLinkingIOS',
  13. 'RCTNetwork',
  14. 'RCTText',
  15. 'RCTWebSocket',
  16. ]
  17. pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
  18. pod 'DoubleConversion',
  19. :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
  20. pod 'glog',
  21. :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec'
  22. pod 'Folly',
  23. :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec'
  24. pod 'react-native-background-timer',
  25. :path => '../node_modules/react-native-background-timer'
  26. pod 'react-native-fast-image',
  27. :path => '../node_modules/react-native-fast-image'
  28. pod 'react-native-keep-awake',
  29. :path => '../node_modules/react-native-keep-awake'
  30. pod 'react-native-locale-detector',
  31. :path => '../node_modules/react-native-locale-detector'
  32. pod 'react-native-webrtc', :path => '../node_modules/react-native-webrtc'
  33. pod 'ReactNativePermissions',
  34. :path => '../node_modules/react-native-permissions'
  35. pod 'RNSound', :path => '../node_modules/react-native-sound'
  36. pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'
  37. pod 'react-native-calendar-events',
  38. :path => '../node_modules/react-native-calendar-events'
  39. end
  40. post_install do |installer|
  41. installer.pods_project.targets.each do |target|
  42. target.build_configurations.each do |config|
  43. config.build_settings['ENABLE_BITCODE'] = 'NO'
  44. end
  45. end
  46. end