Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

Podfile 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. platform :ios, '10.0'
  2. workspace 'jitsi-meet'
  3. target 'jitsi-meet' do
  4. project 'app/app.xcodeproj'
  5. pod 'Crashlytics'
  6. pod 'Fabric'
  7. pod 'Firebase/Core'
  8. pod 'Firebase/DynamicLinks'
  9. end
  10. target 'JitsiMeet' do
  11. project 'sdk/sdk.xcodeproj'
  12. pod 'React', :path => '../node_modules/react-native', :subspecs => [
  13. 'Core',
  14. 'CxxBridge',
  15. 'DevSupport',
  16. 'RCTActionSheet',
  17. 'RCTAnimation',
  18. 'RCTImage',
  19. 'RCTLinkingIOS',
  20. 'RCTNetwork',
  21. 'RCTText',
  22. 'RCTWebSocket',
  23. ]
  24. pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
  25. pod 'DoubleConversion',
  26. :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
  27. pod 'glog',
  28. :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec'
  29. pod 'Folly',
  30. :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec'
  31. pod 'ObjectiveDropboxOfficial'
  32. pod 'react-native-background-timer',
  33. :path => '../node_modules/react-native-background-timer'
  34. pod 'react-native-fast-image',
  35. :path => '../node_modules/react-native-fast-image'
  36. pod 'react-native-keep-awake',
  37. :path => '../node_modules/react-native-keep-awake'
  38. pod 'BVLinearGradient',
  39. :path => '../node_modules/react-native-linear-gradient'
  40. pod 'react-native-webrtc', :path => '../node_modules/react-native-webrtc'
  41. pod 'RNGoogleSignin',
  42. :path => '../node_modules/react-native-google-signin'
  43. pod 'RNSound', :path => '../node_modules/react-native-sound'
  44. pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'
  45. pod 'react-native-calendar-events',
  46. :path => '../node_modules/react-native-calendar-events'
  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'] = 'NO'
  52. end
  53. end
  54. end