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ů.

react-native.config.js 887B

1234567891011121314151617181920212223242526272829303132333435
  1. /**
  2. * This is needed because the RN cli incorrectly detects the iOS app path as
  3. * jitsi-meet/ios/app and thus all pod references in the now dynamically generated
  4. * Podfile are wrong.
  5. */
  6. module.exports = {
  7. // Exclude some dependencies from auto-linking for the lite SDK.
  8. dependencies: {
  9. '@giphy/react-native-sdk': {
  10. platforms: {
  11. ios: null
  12. }
  13. },
  14. '@react-native-google-signin/google-signin': {
  15. platforms: {
  16. ios: null
  17. }
  18. },
  19. 'react-native-calendar-events': {
  20. platforms: {
  21. ios: null
  22. }
  23. },
  24. 'react-native-watch-connectivity': {
  25. platforms: {
  26. ios: null
  27. }
  28. }
  29. },
  30. project: {
  31. ios: {
  32. project: '.ios/jitsi-meet.xcworkspace'
  33. }
  34. }
  35. };