Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

Podfile 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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-fetch-blob',
  27. :path => '../node_modules/react-native-fetch-blob'
  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 'RNSound', :path => '../node_modules/react-native-sound'
  34. pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'
  35. pod 'react-native-calendar-events',
  36. :path => '../node_modules/react-native-calendar-events'
  37. end
  38. post_install do |installer|
  39. installer.pods_project.targets.each do |target|
  40. target.build_configurations.each do |config|
  41. config.build_settings['ENABLE_BITCODE'] = 'NO'
  42. end
  43. end
  44. end