@placetime/corptime-conference 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +132 -0
- package/android/build.gradle +156 -0
- package/android/gradle.properties +5 -0
- package/android/src/main/AndroidManifest.xml +3 -0
- package/android/src/main/java/org/jitsi/meet/sdk/AndroidSettingsModule.java +56 -0
- package/android/src/main/java/org/jitsi/meet/sdk/AppInfoModule.java +150 -0
- package/android/src/main/java/org/jitsi/meet/sdk/AudioDeviceHandlerConnectionService.java +185 -0
- package/android/src/main/java/org/jitsi/meet/sdk/AudioDeviceHandlerGeneric.java +248 -0
- package/android/src/main/java/org/jitsi/meet/sdk/AudioModeModule.java +529 -0
- package/android/src/main/java/org/jitsi/meet/sdk/ConnectionService.java +452 -0
- package/android/src/main/java/org/jitsi/meet/sdk/JMOngoingConferenceModule.java +117 -0
- package/android/src/main/java/org/jitsi/meet/sdk/JMOngoingConferenceService.java +107 -0
- package/android/src/main/java/org/jitsi/meet/sdk/JitsiMeetReactNativePackage.java +39 -0
- package/android/src/main/java/org/jitsi/meet/sdk/LocaleDetector.java +58 -0
- package/android/src/main/java/org/jitsi/meet/sdk/LogBridgeModule.java +73 -0
- package/android/src/main/java/org/jitsi/meet/sdk/PictureInPictureModule.java +171 -0
- package/android/src/main/java/org/jitsi/meet/sdk/ProximityModule.java +107 -0
- package/android/src/main/java/org/jitsi/meet/sdk/RNConnectionService.java +255 -0
- package/android/src/main/java/org/jitsi/meet/sdk/RNOngoingNotification.java +108 -0
- package/android/src/main/java/org/jitsi/meet/sdk/log/log/JitsiMeetBaseLogHandler.java +49 -0
- package/android/src/main/java/org/jitsi/meet/sdk/log/log/JitsiMeetDefaultLogHandler.java +39 -0
- package/android/src/main/java/org/jitsi/meet/sdk/log/log/JitsiMeetLogger.java +107 -0
- package/android/src/main/java/org/jitsi/meet/sdk/log/net/NAT64AddrInfo.java +238 -0
- package/android/src/main/java/org/jitsi/meet/sdk/log/net/NAT64AddrInfoModule.java +123 -0
- package/android/src/main/res/drawable-hdpi/ic_notification.png +0 -0
- package/android/src/main/res/drawable-mdpi/ic_notification.png +0 -0
- package/android/src/main/res/drawable-xhdpi/ic_notification.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/ic_notification.png +0 -0
- package/android/src/main/res/drawable-xxxhdpi/ic_notification.png +0 -0
- package/android/src/main/res/values/colors.xml +5 -0
- package/android/src/main/res/values/strings.xml +12 -0
- package/android/src/main/res/values/styles.xml +6 -0
- package/images/GIPHY_icon.png +0 -0
- package/images/GIPHY_logo.png +0 -0
- package/images/app-store-badge.png +0 -0
- package/images/apple-touch-icon.png +0 -0
- package/images/avatar.png +0 -0
- package/images/btn_google_signin_dark_normal.png +0 -0
- package/images/calendar.svg +21 -0
- package/images/chromeLogo.svg +9 -0
- package/images/downloadLocalRecording.png +0 -0
- package/images/dropboxLogo_square.png +0 -0
- package/images/f-droid-badge.png +0 -0
- package/images/favicon.svg +4 -0
- package/images/flags.png +0 -0
- package/images/flags@2x.png +0 -0
- package/images/google-play-badge.png +0 -0
- package/images/googleLogo.svg +11 -0
- package/images/icon-cloud.png +0 -0
- package/images/icon-info.png +0 -0
- package/images/icon-users.png +0 -0
- package/images/jitsilogo.png +0 -0
- package/images/logo-deep-linking-mobile.png +0 -0
- package/images/logo-deep-linking.png +0 -0
- package/images/microsoftLogo.svg +1 -0
- package/images/share-audio.gif +0 -0
- package/images/virtual-background/background-1.jpg +0 -0
- package/images/virtual-background/background-2.jpg +0 -0
- package/images/virtual-background/background-3.jpg +0 -0
- package/images/virtual-background/background-4.jpg +0 -0
- package/images/virtual-background/background-5.jpg +0 -0
- package/images/virtual-background/background-6.jpg +0 -0
- package/images/virtual-background/background-7.jpg +0 -0
- package/images/watermark.svg +5 -0
- package/images/welcome-background.png +0 -0
- package/index.tsx +182 -0
- package/ios/sdk.xcodeproj/project.pbxproj +1042 -0
- package/ios/sdk.xcodeproj/xcshareddata/xcschemes/JitsiMeetSDK.xcscheme +76 -0
- package/ios/sdk.xcodeproj/xcshareddata/xcschemes/JitsiMeetSDKLite.xcscheme +67 -0
- package/ios/src/AppInfo.m +102 -0
- package/ios/src/AudioMode.m +430 -0
- package/ios/src/InfoPlistUtil.h +23 -0
- package/ios/src/InfoPlistUtil.m +52 -0
- package/ios/src/JitsiAudioSession+Private.h +24 -0
- package/ios/src/JitsiAudioSession.h +26 -0
- package/ios/src/JitsiAudioSession.m +34 -0
- package/ios/src/LocaleDetector.m +40 -0
- package/ios/src/POSIX.m +110 -0
- package/ios/src/Proximity.m +44 -0
- package/ios/src/callkit/CallKit.m +347 -0
- package/ios/src/callkit/JMCallKitEmitter.h +35 -0
- package/ios/src/callkit/JMCallKitEmitter.m +117 -0
- package/ios/src/callkit/JMCallKitListener.h +34 -0
- package/ios/src/callkit/JMCallKitProxy.h +87 -0
- package/ios/src/callkit/JMCallKitProxy.m +284 -0
- package/ios/src/dropbox/Dropbox.h +27 -0
- package/ios/src/dropbox/Dropbox.m +180 -0
- package/jitsi-meet-rnsdk.podspec +35 -0
- package/lang/languages.json +61 -0
- package/lang/main-af.json +710 -0
- package/lang/main-ar.json +1357 -0
- package/lang/main-be.json +790 -0
- package/lang/main-bg.json +1685 -0
- package/lang/main-ca.json +1367 -0
- package/lang/main-cs.json +1582 -0
- package/lang/main-da.json +770 -0
- package/lang/main-de.json +1614 -0
- package/lang/main-dsb.json +1372 -0
- package/lang/main-el.json +1421 -0
- package/lang/main-eo.json +1527 -0
- package/lang/main-es-US.json +1196 -0
- package/lang/main-es.json +1468 -0
- package/lang/main-et.json +775 -0
- package/lang/main-eu.json +1037 -0
- package/lang/main-fa.json +1480 -0
- package/lang/main-fi.json +726 -0
- package/lang/main-fr-CA.json +1685 -0
- package/lang/main-fr.json +1685 -0
- package/lang/main-gl.json +755 -0
- package/lang/main-he.json +789 -0
- package/lang/main-hi.json +977 -0
- package/lang/main-hr.json +1364 -0
- package/lang/main-hsb.json +1317 -0
- package/lang/main-hu.json +1098 -0
- package/lang/main-hy.json +705 -0
- package/lang/main-id.json +1549 -0
- package/lang/main-is.json +1527 -0
- package/lang/main-it.json +1700 -0
- package/lang/main-ja.json +1258 -0
- package/lang/main-kab.json +1166 -0
- package/lang/main-ko.json +1581 -0
- package/lang/main-lt.json +776 -0
- package/lang/main-lv.json +1667 -0
- package/lang/main-ml.json +935 -0
- package/lang/main-mn.json +1441 -0
- package/lang/main-mr.json +786 -0
- package/lang/main-nb.json +1583 -0
- package/lang/main-nl.json +1111 -0
- package/lang/main-no.json +1583 -0
- package/lang/main-oc.json +1589 -0
- package/lang/main-pl.json +1456 -0
- package/lang/main-pt-BR.json +1524 -0
- package/lang/main-pt.json +1671 -0
- package/lang/main-ro.json +763 -0
- package/lang/main-ru.json +1542 -0
- package/lang/main-sc.json +1685 -0
- package/lang/main-sk.json +917 -0
- package/lang/main-sl.json +1167 -0
- package/lang/main-sq.json +1581 -0
- package/lang/main-sr.json +763 -0
- package/lang/main-sv.json +1583 -0
- package/lang/main-te.json +994 -0
- package/lang/main-tr.json +1572 -0
- package/lang/main-uk.json +1432 -0
- package/lang/main-vi.json +1538 -0
- package/lang/main-zh-CN.json +1631 -0
- package/lang/main-zh-TW.json +1631 -0
- package/lang/main.json +1690 -0
- package/lang/readme.md +55 -0
- package/lang/translation-languages.json +112 -0
- package/lang/update-translation.js +38 -0
- package/modules/API/.eslintrc.js +3 -0
- package/modules/API/API.js +2351 -0
- package/modules/API/constants.js +31 -0
- package/modules/API/external/external_api.js +1508 -0
- package/modules/API/external/functions.js +139 -0
- package/modules/API/external/index.js +3 -0
- package/modules/API/index.js +2 -0
- package/modules/UI/UI.js +234 -0
- package/modules/UI/UIErrors.js +17 -0
- package/modules/UI/audio_levels/AudioLevels.js +66 -0
- package/modules/UI/etherpad/Etherpad.js +186 -0
- package/modules/UI/util/UIUtil.js +59 -0
- package/modules/UI/videolayout/Filmstrip.js +34 -0
- package/modules/UI/videolayout/LargeContainer.js +67 -0
- package/modules/UI/videolayout/LargeVideoManager.js +780 -0
- package/modules/UI/videolayout/VideoContainer.js +676 -0
- package/modules/UI/videolayout/VideoLayout.js +317 -0
- package/modules/devices/mediaDeviceHelper.js +295 -0
- package/modules/recorder/Recorder.js +44 -0
- package/modules/translation/translation.js +62 -0
- package/modules/transport/.eslintrc.js +3 -0
- package/modules/transport/index.js +52 -0
- package/modules/util/TaskQueue.js +71 -0
- package/modules/util/helpers.js +26 -0
- package/package.json +97 -0
- package/prepare_sdk.js +202 -0
- package/react/.eslintrc-react-native.js +11 -0
- package/react/.eslintrc.js +28 -0
- package/react/bootstrap.native.js +7 -0
- package/react/features/always-on-top/AlwaysOnTop.tsx +281 -0
- package/react/features/always-on-top/AudioMuteButton.tsx +180 -0
- package/react/features/always-on-top/HangupButton.tsx +60 -0
- package/react/features/always-on-top/Toolbar.tsx +137 -0
- package/react/features/always-on-top/ToolbarButton.tsx +69 -0
- package/react/features/always-on-top/VideoMuteButton.tsx +180 -0
- package/react/features/always-on-top/index.tsx +13 -0
- package/react/features/analytics/AnalyticsEvents.ts +983 -0
- package/react/features/analytics/actionTypes.ts +29 -0
- package/react/features/analytics/actions.ts +25 -0
- package/react/features/analytics/functions.ts +339 -0
- package/react/features/analytics/handlers/AbstractHandler.ts +115 -0
- package/react/features/analytics/handlers/AmplitudeHandler.ts +91 -0
- package/react/features/analytics/handlers/MatomoHandler.ts +170 -0
- package/react/features/analytics/handlers/amplitude/deviceIDStorageUtils.js +0 -0
- package/react/features/analytics/handlers/amplitude/fixDeviceID.native.ts +33 -0
- package/react/features/analytics/handlers/amplitude/fixDeviceID.web.ts +46 -0
- package/react/features/analytics/handlers/amplitude/lib.native.ts +15 -0
- package/react/features/analytics/handlers/amplitude/lib.web.ts +38 -0
- package/react/features/analytics/logger.ts +3 -0
- package/react/features/analytics/middleware.ts +216 -0
- package/react/features/analytics/reducer.ts +88 -0
- package/react/features/app/actions.any.ts +160 -0
- package/react/features/app/actions.native.ts +230 -0
- package/react/features/app/actions.web.ts +207 -0
- package/react/features/app/components/AbstractApp.ts +89 -0
- package/react/features/app/components/App.native.tsx +312 -0
- package/react/features/app/components/App.web.tsx +67 -0
- package/react/features/app/functions.any.ts +25 -0
- package/react/features/app/functions.native.ts +40 -0
- package/react/features/app/functions.web.ts +59 -0
- package/react/features/app/getRouteToRender.native.ts +18 -0
- package/react/features/app/getRouteToRender.web.ts +148 -0
- package/react/features/app/logger.ts +3 -0
- package/react/features/app/middleware.ts +180 -0
- package/react/features/app/middlewares.any.ts +57 -0
- package/react/features/app/middlewares.native.ts +17 -0
- package/react/features/app/middlewares.web.ts +28 -0
- package/react/features/app/reducer.native.ts +28 -0
- package/react/features/app/reducers.any.ts +58 -0
- package/react/features/app/reducers.native.ts +9 -0
- package/react/features/app/reducers.web.ts +22 -0
- package/react/features/app/types.ts +180 -0
- package/react/features/audio-level-indicator/components/AudioLevelIndicator.tsx +83 -0
- package/react/features/authentication/actionTypes.ts +106 -0
- package/react/features/authentication/actions.any.ts +257 -0
- package/react/features/authentication/actions.native.ts +90 -0
- package/react/features/authentication/actions.web.ts +78 -0
- package/react/features/authentication/components/index.native.ts +2 -0
- package/react/features/authentication/components/index.web.ts +2 -0
- package/react/features/authentication/components/native/LoginDialog.tsx +318 -0
- package/react/features/authentication/components/native/WaitForOwnerDialog.tsx +116 -0
- package/react/features/authentication/components/web/LoginDialog.tsx +299 -0
- package/react/features/authentication/components/web/LoginQuestionDialog.tsx +38 -0
- package/react/features/authentication/components/web/WaitForOwnerDialog.tsx +119 -0
- package/react/features/authentication/functions.any.ts +86 -0
- package/react/features/authentication/functions.native.ts +78 -0
- package/react/features/authentication/functions.web.ts +122 -0
- package/react/features/authentication/logger.ts +3 -0
- package/react/features/authentication/middleware.ts +344 -0
- package/react/features/authentication/reducer.ts +110 -0
- package/react/features/av-moderation/actionTypes.ts +144 -0
- package/react/features/av-moderation/actions.ts +386 -0
- package/react/features/av-moderation/constants.ts +51 -0
- package/react/features/av-moderation/functions.ts +182 -0
- package/react/features/av-moderation/middleware.ts +317 -0
- package/react/features/av-moderation/reducer.ts +399 -0
- package/react/features/av-moderation/sounds.ts +6 -0
- package/react/features/base/app/actionTypes.ts +33 -0
- package/react/features/base/app/actions.ts +69 -0
- package/react/features/base/app/components/BaseApp.tsx +283 -0
- package/react/features/base/app/functions.ts +28 -0
- package/react/features/base/app/logger.ts +3 -0
- package/react/features/base/app/middleware.web.ts +54 -0
- package/react/features/base/app/reducer.ts +34 -0
- package/react/features/base/app/types.ts +3 -0
- package/react/features/base/audio-only/actionTypes.ts +10 -0
- package/react/features/base/audio-only/actions.ts +51 -0
- package/react/features/base/audio-only/logger.ts +3 -0
- package/react/features/base/audio-only/reducer.ts +25 -0
- package/react/features/base/avatar/components/Avatar.tsx +295 -0
- package/react/features/base/avatar/components/index.native.ts +1 -0
- package/react/features/base/avatar/components/index.web.ts +1 -0
- package/react/features/base/avatar/components/native/StatelessAvatar.tsx +200 -0
- package/react/features/base/avatar/components/native/styles.ts +82 -0
- package/react/features/base/avatar/components/styles.ts +5 -0
- package/react/features/base/avatar/components/web/StatelessAvatar.tsx +220 -0
- package/react/features/base/avatar/constants.ts +4 -0
- package/react/features/base/avatar/functions.ts +95 -0
- package/react/features/base/avatar/types.ts +32 -0
- package/react/features/base/buttons/CopyButton.web.tsx +244 -0
- package/react/features/base/color-scheme/ColorSchemeRegistry.ts +162 -0
- package/react/features/base/color-scheme/defaultScheme.ts +30 -0
- package/react/features/base/color-scheme/functions.ts +11 -0
- package/react/features/base/components/themes/participantsPaneTheme.json +5 -0
- package/react/features/base/conference/actionTypes.ts +369 -0
- package/react/features/base/conference/actions.any.ts +1126 -0
- package/react/features/base/conference/actions.native.ts +29 -0
- package/react/features/base/conference/actions.web.ts +25 -0
- package/react/features/base/conference/constants.ts +47 -0
- package/react/features/base/conference/functions.ts +657 -0
- package/react/features/base/conference/logger.ts +3 -0
- package/react/features/base/conference/middleware.any.ts +830 -0
- package/react/features/base/conference/middleware.native.ts +50 -0
- package/react/features/base/conference/middleware.web.ts +223 -0
- package/react/features/base/conference/reducer.ts +709 -0
- package/react/features/base/config/actionTypes.ts +61 -0
- package/react/features/base/config/actions.ts +185 -0
- package/react/features/base/config/configType.ts +670 -0
- package/react/features/base/config/configWhitelist.ts +254 -0
- package/react/features/base/config/constants.ts +43 -0
- package/react/features/base/config/extraConfigWhitelist.ts +4 -0
- package/react/features/base/config/extraInterfaceConfigWhitelist.ts +4 -0
- package/react/features/base/config/functions.any.ts +465 -0
- package/react/features/base/config/functions.native.ts +53 -0
- package/react/features/base/config/functions.web.ts +87 -0
- package/react/features/base/config/getRoomName.ts +15 -0
- package/react/features/base/config/interfaceConfigWhitelist.ts +57 -0
- package/react/features/base/config/isEmbeddedConfigWhitelist.ts +10 -0
- package/react/features/base/config/isEmbeddedInterfaceConfigWhitelist.ts +6 -0
- package/react/features/base/config/logger.ts +3 -0
- package/react/features/base/config/middleware.ts +225 -0
- package/react/features/base/config/reducer.ts +603 -0
- package/react/features/base/connection/actionTypes.ts +84 -0
- package/react/features/base/connection/actions.any.ts +448 -0
- package/react/features/base/connection/actions.native.ts +62 -0
- package/react/features/base/connection/actions.web.ts +90 -0
- package/react/features/base/connection/constants.ts +17 -0
- package/react/features/base/connection/functions.ts +101 -0
- package/react/features/base/connection/logger.ts +3 -0
- package/react/features/base/connection/middleware.web.ts +30 -0
- package/react/features/base/connection/reducer.ts +269 -0
- package/react/features/base/connection/types.ts +113 -0
- package/react/features/base/connection/utils.ts +49 -0
- package/react/features/base/devices/actionTypes.ts +96 -0
- package/react/features/base/devices/actions.web.ts +356 -0
- package/react/features/base/devices/constants.ts +11 -0
- package/react/features/base/devices/functions.any.ts +19 -0
- package/react/features/base/devices/functions.native.ts +1 -0
- package/react/features/base/devices/functions.web.ts +383 -0
- package/react/features/base/devices/logger.ts +3 -0
- package/react/features/base/devices/middleware.web.ts +349 -0
- package/react/features/base/devices/reducer.web.ts +88 -0
- package/react/features/base/devices/types.ts +17 -0
- package/react/features/base/dialog/actionTypes.ts +41 -0
- package/react/features/base/dialog/actions.ts +126 -0
- package/react/features/base/dialog/components/AbstractDialogContainer.ts +72 -0
- package/react/features/base/dialog/components/functions.native.tsx +57 -0
- package/react/features/base/dialog/components/native/AbstractDialog.ts +168 -0
- package/react/features/base/dialog/components/native/AlertDialog.tsx +56 -0
- package/react/features/base/dialog/components/native/BottomSheet.tsx +150 -0
- package/react/features/base/dialog/components/native/BottomSheetContainer.tsx +22 -0
- package/react/features/base/dialog/components/native/ConfirmDialog.tsx +172 -0
- package/react/features/base/dialog/components/native/DialogContainer.tsx +58 -0
- package/react/features/base/dialog/components/native/InputDialog.tsx +170 -0
- package/react/features/base/dialog/components/native/PageReloadDialog.tsx +221 -0
- package/react/features/base/dialog/components/native/styles.ts +265 -0
- package/react/features/base/dialog/components/web/AbstractDialogTab.ts +58 -0
- package/react/features/base/dialog/constants.ts +83 -0
- package/react/features/base/dialog/functions.ts +45 -0
- package/react/features/base/dialog/logger.ts +3 -0
- package/react/features/base/dialog/reducer.ts +63 -0
- package/react/features/base/environment/checkChromeExtensionsInstalled.native.ts +10 -0
- package/react/features/base/environment/checkChromeExtensionsInstalled.web.ts +26 -0
- package/react/features/base/environment/environment.ts +122 -0
- package/react/features/base/environment/utils.ts +32 -0
- package/react/features/base/flags/actionTypes.ts +10 -0
- package/react/features/base/flags/actions.ts +27 -0
- package/react/features/base/flags/constants.ts +286 -0
- package/react/features/base/flags/functions.ts +31 -0
- package/react/features/base/flags/reducer.ts +35 -0
- package/react/features/base/i18n/BuiltinLanguages.native.ts +189 -0
- package/react/features/base/i18n/BuiltinLanguages.web.ts +0 -0
- package/react/features/base/i18n/actionTypes.ts +9 -0
- package/react/features/base/i18n/configLanguageDetector.ts +28 -0
- package/react/features/base/i18n/dateUtil.ts +150 -0
- package/react/features/base/i18n/functions.tsx +45 -0
- package/react/features/base/i18n/i18next.ts +147 -0
- package/react/features/base/i18n/languageDetector.native.ts +43 -0
- package/react/features/base/i18n/languageDetector.web.ts +39 -0
- package/react/features/base/i18n/logger.ts +3 -0
- package/react/features/base/i18n/middleware.ts +49 -0
- package/react/features/base/icons/components/Icon.tsx +209 -0
- package/react/features/base/icons/components/SvgXmlIcon.native.tsx +17 -0
- package/react/features/base/icons/components/SvgXmlIcon.web.tsx +26 -0
- package/react/features/base/icons/components/types.native.ts +5 -0
- package/react/features/base/icons/components/types.web.ts +5 -0
- package/react/features/base/icons/components/withBranding.tsx +32 -0
- package/react/features/base/icons/svg/account-record.svg +5 -0
- package/react/features/base/icons/svg/add-user.svg +5 -0
- package/react/features/base/icons/svg/arrow-back.svg +5 -0
- package/react/features/base/icons/svg/arrow-down-large.svg +3 -0
- package/react/features/base/icons/svg/arrow-down.svg +3 -0
- package/react/features/base/icons/svg/arrow-left.svg +3 -0
- package/react/features/base/icons/svg/arrow-right.svg +3 -0
- package/react/features/base/icons/svg/arrow-up-large.svg +3 -0
- package/react/features/base/icons/svg/arrow-up.svg +3 -0
- package/react/features/base/icons/svg/bell.svg +3 -0
- package/react/features/base/icons/svg/bluetooth.svg +3 -0
- package/react/features/base/icons/svg/calendar.svg +3 -0
- package/react/features/base/icons/svg/camera-refresh.svg +3 -0
- package/react/features/base/icons/svg/car.svg +3 -0
- package/react/features/base/icons/svg/chat-unread.svg +5 -0
- package/react/features/base/icons/svg/check.svg +3 -0
- package/react/features/base/icons/svg/close-circle.svg +4 -0
- package/react/features/base/icons/svg/close-large.svg +3 -0
- package/react/features/base/icons/svg/cloud-upload.svg +4 -0
- package/react/features/base/icons/svg/code.svg +5 -0
- package/react/features/base/icons/svg/connection.svg +3 -0
- package/react/features/base/icons/svg/constants.ts +222 -0
- package/react/features/base/icons/svg/contact-record.svg +4 -0
- package/react/features/base/icons/svg/copy.svg +4 -0
- package/react/features/base/icons/svg/dots-horizontal.svg +5 -0
- package/react/features/base/icons/svg/download.svg +4 -0
- package/react/features/base/icons/svg/e2ee.svg +3 -0
- package/react/features/base/icons/svg/edit.svg +3 -0
- package/react/features/base/icons/svg/emotions-angry.svg +10 -0
- package/react/features/base/icons/svg/emotions-disgusted.svg +10 -0
- package/react/features/base/icons/svg/emotions-fearful.svg +10 -0
- package/react/features/base/icons/svg/emotions-happy.svg +10 -0
- package/react/features/base/icons/svg/emotions-neutral.svg +10 -0
- package/react/features/base/icons/svg/emotions-sad.svg +10 -0
- package/react/features/base/icons/svg/emotions-surprised.svg +10 -0
- package/react/features/base/icons/svg/enlarge.svg +5 -0
- package/react/features/base/icons/svg/enter-fullscreen.svg +6 -0
- package/react/features/base/icons/svg/envelope.svg +3 -0
- package/react/features/base/icons/svg/exclamation-solid.svg +3 -0
- package/react/features/base/icons/svg/exclamation-triangle.svg +3 -0
- package/react/features/base/icons/svg/exit-fullscreen.svg +6 -0
- package/react/features/base/icons/svg/face-smile.svg +6 -0
- package/react/features/base/icons/svg/favorite-solid.svg +3 -0
- package/react/features/base/icons/svg/favorite.svg +3 -0
- package/react/features/base/icons/svg/feedback.svg +3 -0
- package/react/features/base/icons/svg/gear.svg +4 -0
- package/react/features/base/icons/svg/google.svg +3 -0
- package/react/features/base/icons/svg/hangup.svg +3 -0
- package/react/features/base/icons/svg/headset.svg +5 -0
- package/react/features/base/icons/svg/help.svg +3 -0
- package/react/features/base/icons/svg/highlight.svg +3 -0
- package/react/features/base/icons/svg/icon-ring-group.svg +3 -0
- package/react/features/base/icons/svg/image.svg +4 -0
- package/react/features/base/icons/svg/index.ts +233 -0
- package/react/features/base/icons/svg/info-circle.svg +5 -0
- package/react/features/base/icons/svg/info.svg +3 -0
- package/react/features/base/icons/svg/lead-record.svg +5 -0
- package/react/features/base/icons/svg/message.svg +6 -0
- package/react/features/base/icons/svg/meter.svg +10 -0
- package/react/features/base/icons/svg/mic-slash.svg +5 -0
- package/react/features/base/icons/svg/mic.svg +4 -0
- package/react/features/base/icons/svg/moderator.svg +3 -0
- package/react/features/base/icons/svg/ninja.svg +5 -0
- package/react/features/base/icons/svg/noise-suppression-off.svg +4 -0
- package/react/features/base/icons/svg/noise-suppression-on.svg +3 -0
- package/react/features/base/icons/svg/office365.svg +3 -0
- package/react/features/base/icons/svg/opportunity-record.svg +5 -0
- package/react/features/base/icons/svg/performance.svg +4 -0
- package/react/features/base/icons/svg/phone-ringing.svg +5 -0
- package/react/features/base/icons/svg/pin.svg +3 -0
- package/react/features/base/icons/svg/pinned.svg +3 -0
- package/react/features/base/icons/svg/play.svg +3 -0
- package/react/features/base/icons/svg/plus.svg +3 -0
- package/react/features/base/icons/svg/raise-hand.svg +4 -0
- package/react/features/base/icons/svg/record.svg +3 -0
- package/react/features/base/icons/svg/reply.svg +3 -0
- package/react/features/base/icons/svg/restore.svg +5 -0
- package/react/features/base/icons/svg/screenshare.svg +4 -0
- package/react/features/base/icons/svg/search.svg +3 -0
- package/react/features/base/icons/svg/security-off.svg +4 -0
- package/react/features/base/icons/svg/security-on.svg +4 -0
- package/react/features/base/icons/svg/send.svg +3 -0
- package/react/features/base/icons/svg/share-doc.svg +5 -0
- package/react/features/base/icons/svg/share.svg +3 -0
- package/react/features/base/icons/svg/shortcuts.svg +6 -0
- package/react/features/base/icons/svg/sip.svg +3 -0
- package/react/features/base/icons/svg/sites.svg +3 -0
- package/react/features/base/icons/svg/start-remote-control.svg +5 -0
- package/react/features/base/icons/svg/stop-remote-control.svg +5 -0
- package/react/features/base/icons/svg/stop.svg +4 -0
- package/react/features/base/icons/svg/subtitles.svg +5 -0
- package/react/features/base/icons/svg/tile-view.svg +6 -0
- package/react/features/base/icons/svg/trash.svg +1 -0
- package/react/features/base/icons/svg/user-deleted.svg +3 -0
- package/react/features/base/icons/svg/user.svg +4 -0
- package/react/features/base/icons/svg/users.svg +6 -0
- package/react/features/base/icons/svg/video-off.svg +4 -0
- package/react/features/base/icons/svg/video.svg +3 -0
- package/react/features/base/icons/svg/visibility-off.svg +5 -0
- package/react/features/base/icons/svg/visibility.svg +5 -0
- package/react/features/base/icons/svg/volume-off.svg +4 -0
- package/react/features/base/icons/svg/volume-up.svg +5 -0
- package/react/features/base/icons/svg/warning-circle.svg +3 -0
- package/react/features/base/icons/svg/warning.svg +1 -0
- package/react/features/base/icons/svg/whiteboard-hide.svg +4 -0
- package/react/features/base/icons/svg/whiteboard.svg +5 -0
- package/react/features/base/icons/svg/wifi-1.svg +5 -0
- package/react/features/base/icons/svg/wifi-2.svg +5 -0
- package/react/features/base/icons/svg/wifi-3.svg +5 -0
- package/react/features/base/icons/svg/yahoo.svg +3 -0
- package/react/features/base/jitsi-local-storage/logger.ts +3 -0
- package/react/features/base/jitsi-local-storage/setup.web.ts +86 -0
- package/react/features/base/jwt/actionTypes.ts +30 -0
- package/react/features/base/jwt/actions.ts +49 -0
- package/react/features/base/jwt/constants.ts +45 -0
- package/react/features/base/jwt/functions.ts +241 -0
- package/react/features/base/jwt/logger.ts +3 -0
- package/react/features/base/jwt/middleware.ts +323 -0
- package/react/features/base/jwt/reducer.ts +73 -0
- package/react/features/base/known-domains/actionTypes.ts +10 -0
- package/react/features/base/known-domains/actions.ts +20 -0
- package/react/features/base/known-domains/middleware.ts +55 -0
- package/react/features/base/known-domains/reducer.ts +62 -0
- package/react/features/base/label/components/native/ExpandedLabel.tsx +102 -0
- package/react/features/base/label/components/native/Label.tsx +179 -0
- package/react/features/base/label/components/native/styles.ts +68 -0
- package/react/features/base/label/components/web/ExpandedLabel.ts +0 -0
- package/react/features/base/label/components/web/Label.tsx +134 -0
- package/react/features/base/label/constants.ts +5 -0
- package/react/features/base/lastn/actionTypes.ts +9 -0
- package/react/features/base/lastn/actions.ts +17 -0
- package/react/features/base/lastn/functions.ts +24 -0
- package/react/features/base/lastn/logger.ts +3 -0
- package/react/features/base/lastn/middleware.ts +92 -0
- package/react/features/base/lastn/reducer.ts +22 -0
- package/react/features/base/lib-jitsi-meet/_.native.ts +7 -0
- package/react/features/base/lib-jitsi-meet/_.web.ts +3 -0
- package/react/features/base/lib-jitsi-meet/actionTypes.ts +48 -0
- package/react/features/base/lib-jitsi-meet/actions.ts +84 -0
- package/react/features/base/lib-jitsi-meet/functions.any.ts +99 -0
- package/react/features/base/lib-jitsi-meet/functions.native.ts +75 -0
- package/react/features/base/lib-jitsi-meet/functions.web.ts +14 -0
- package/react/features/base/lib-jitsi-meet/index.ts +24 -0
- package/react/features/base/lib-jitsi-meet/logger.ts +3 -0
- package/react/features/base/lib-jitsi-meet/middleware.ts +74 -0
- package/react/features/base/lib-jitsi-meet/reducer.ts +45 -0
- package/react/features/base/logging/ExternalApiLogTransport.ts +18 -0
- package/react/features/base/logging/JitsiMeetInMemoryLogStorage.ts +59 -0
- package/react/features/base/logging/JitsiMeetLogStorage.ts +69 -0
- package/react/features/base/logging/LogTransport.native.ts +68 -0
- package/react/features/base/logging/LogTransport.web.ts +1 -0
- package/react/features/base/logging/actionTypes.ts +21 -0
- package/react/features/base/logging/actions.ts +35 -0
- package/react/features/base/logging/functions.ts +44 -0
- package/react/features/base/logging/middleware.ts +302 -0
- package/react/features/base/logging/reducer.ts +115 -0
- package/react/features/base/logging/types.ts +9 -0
- package/react/features/base/media/actionTypes.ts +126 -0
- package/react/features/base/media/actions.ts +291 -0
- package/react/features/base/media/components/AbstractAudio.ts +126 -0
- package/react/features/base/media/components/AbstractVideoTrack.tsx +150 -0
- package/react/features/base/media/components/index.native.ts +2 -0
- package/react/features/base/media/components/index.web.ts +2 -0
- package/react/features/base/media/components/native/Audio.ts +114 -0
- package/react/features/base/media/components/native/Video.tsx +134 -0
- package/react/features/base/media/components/native/VideoTrack.tsx +30 -0
- package/react/features/base/media/components/native/VideoTransform.tsx +730 -0
- package/react/features/base/media/components/native/styles.ts +35 -0
- package/react/features/base/media/components/web/Audio.tsx +111 -0
- package/react/features/base/media/components/web/AudioTrack.tsx +314 -0
- package/react/features/base/media/components/web/Video.tsx +391 -0
- package/react/features/base/media/components/web/VideoTrack.tsx +197 -0
- package/react/features/base/media/constants.ts +74 -0
- package/react/features/base/media/functions.ts +156 -0
- package/react/features/base/media/logger.ts +3 -0
- package/react/features/base/media/middleware.any.ts +339 -0
- package/react/features/base/media/middleware.native.ts +1 -0
- package/react/features/base/media/middleware.web.ts +44 -0
- package/react/features/base/media/reducer.ts +379 -0
- package/react/features/base/media/subscriber.ts +18 -0
- package/react/features/base/media/types.ts +4 -0
- package/react/features/base/modal/components/JitsiKeyboardAvoidingView.tsx +106 -0
- package/react/features/base/modal/components/JitsiScreen.tsx +94 -0
- package/react/features/base/modal/components/functions.native.ts +32 -0
- package/react/features/base/modal/components/styles.ts +11 -0
- package/react/features/base/net-info/NetworkInfoService.native.ts +70 -0
- package/react/features/base/net-info/NetworkInfoService.web.ts +60 -0
- package/react/features/base/net-info/actionTypes.ts +13 -0
- package/react/features/base/net-info/actions.ts +39 -0
- package/react/features/base/net-info/constants.ts +6 -0
- package/react/features/base/net-info/events.ts +1 -0
- package/react/features/base/net-info/logger.ts +3 -0
- package/react/features/base/net-info/middleware.ts +64 -0
- package/react/features/base/net-info/reducer.ts +40 -0
- package/react/features/base/net-info/selectors.ts +13 -0
- package/react/features/base/net-info/types.ts +37 -0
- package/react/features/base/participants/actionTypes.ts +248 -0
- package/react/features/base/participants/actions.ts +689 -0
- package/react/features/base/participants/components/ParticipantView.native.tsx +300 -0
- package/react/features/base/participants/components/styles.ts +46 -0
- package/react/features/base/participants/constants.ts +82 -0
- package/react/features/base/participants/functions.ts +859 -0
- package/react/features/base/participants/logger.ts +3 -0
- package/react/features/base/participants/middleware.ts +986 -0
- package/react/features/base/participants/preloadImage.native.ts +26 -0
- package/react/features/base/participants/preloadImage.web.ts +46 -0
- package/react/features/base/participants/reducer.ts +694 -0
- package/react/features/base/participants/sounds.ts +11 -0
- package/react/features/base/participants/subscriber.ts +168 -0
- package/react/features/base/participants/types.ts +92 -0
- package/react/features/base/popover/components/Popover.native.ts +0 -0
- package/react/features/base/popover/components/Popover.web.tsx +554 -0
- package/react/features/base/popover/functions.web.ts +153 -0
- package/react/features/base/premeeting/actionTypes.ts +15 -0
- package/react/features/base/premeeting/actions.web.ts +67 -0
- package/react/features/base/premeeting/components/web/ActionButton.tsx +242 -0
- package/react/features/base/premeeting/components/web/ConnectionStatus.tsx +236 -0
- package/react/features/base/premeeting/components/web/PreMeetingScreen.tsx +315 -0
- package/react/features/base/premeeting/components/web/Preview.tsx +99 -0
- package/react/features/base/premeeting/components/web/RecordingWarning.tsx +38 -0
- package/react/features/base/premeeting/components/web/UnsafeRoomWarning.tsx +53 -0
- package/react/features/base/premeeting/constants.ts +8 -0
- package/react/features/base/premeeting/functions.ts +271 -0
- package/react/features/base/premeeting/logger.ts +3 -0
- package/react/features/base/premeeting/reducer.web.ts +42 -0
- package/react/features/base/premeeting/types.ts +25 -0
- package/react/features/base/react/Platform.native.ts +4 -0
- package/react/features/base/react/Platform.web.ts +48 -0
- package/react/features/base/react/components/AbstractContainer.ts +120 -0
- package/react/features/base/react/components/AbstractPage.ts +22 -0
- package/react/features/base/react/components/index.native.ts +2 -0
- package/react/features/base/react/components/index.web.ts +2 -0
- package/react/features/base/react/components/native/AvatarListItem.tsx +164 -0
- package/react/features/base/react/components/native/BaseIndicator.tsx +58 -0
- package/react/features/base/react/components/native/Container.tsx +86 -0
- package/react/features/base/react/components/native/Image.tsx +39 -0
- package/react/features/base/react/components/native/Link.tsx +88 -0
- package/react/features/base/react/components/native/Linkify.tsx +79 -0
- package/react/features/base/react/components/native/LoadingIndicator.tsx +55 -0
- package/react/features/base/react/components/native/Modal.tsx +32 -0
- package/react/features/base/react/components/native/NavigateSectionList.tsx +260 -0
- package/react/features/base/react/components/native/NavigateSectionListEmptyComponent.tsx +40 -0
- package/react/features/base/react/components/native/NavigateSectionListItem.tsx +123 -0
- package/react/features/base/react/components/native/NavigateSectionListSectionHeader.tsx +41 -0
- package/react/features/base/react/components/native/Pressable.tsx +44 -0
- package/react/features/base/react/components/native/SectionList.tsx +92 -0
- package/react/features/base/react/components/native/SlidingView.tsx +293 -0
- package/react/features/base/react/components/native/Text.ts +1 -0
- package/react/features/base/react/components/native/TintedView.tsx +65 -0
- package/react/features/base/react/components/native/headerstyles.ts +86 -0
- package/react/features/base/react/components/native/indicatorStyles.ts +19 -0
- package/react/features/base/react/components/native/slidingviewstyles.ts +29 -0
- package/react/features/base/react/components/native/styles.ts +154 -0
- package/react/features/base/react/components/web/BaseIndicator.tsx +119 -0
- package/react/features/base/react/components/web/Container.ts +20 -0
- package/react/features/base/react/components/web/Image.ts +19 -0
- package/react/features/base/react/components/web/InlineDialogFailure.tsx +88 -0
- package/react/features/base/react/components/web/Linkify.tsx +51 -0
- package/react/features/base/react/components/web/LoadingIndicator.ts +1 -0
- package/react/features/base/react/components/web/MeetingsList.tsx +278 -0
- package/react/features/base/react/components/web/Message.tsx +131 -0
- package/react/features/base/react/components/web/MultiSelectAutocomplete.tsx +321 -0
- package/react/features/base/react/components/web/NavigateSectionListEmptyComponent.ts +0 -0
- package/react/features/base/react/components/web/NavigateSectionListItem.tsx +88 -0
- package/react/features/base/react/components/web/NavigateSectionListSectionHeader.tsx +34 -0
- package/react/features/base/react/components/web/SectionList.tsx +97 -0
- package/react/features/base/react/components/web/Text.ts +27 -0
- package/react/features/base/react/components/web/Watermarks.tsx +265 -0
- package/react/features/base/react/constants.ts +5 -0
- package/react/features/base/react/functions.ts +65 -0
- package/react/features/base/react/logger.ts +3 -0
- package/react/features/base/react/types.ts +106 -0
- package/react/features/base/redux/MiddlewareRegistry.ts +53 -0
- package/react/features/base/redux/PersistenceRegistry.ts +244 -0
- package/react/features/base/redux/README.md +44 -0
- package/react/features/base/redux/ReducerRegistry.ts +62 -0
- package/react/features/base/redux/StateListenerRegistry.ts +186 -0
- package/react/features/base/redux/functions.ts +145 -0
- package/react/features/base/redux/logger.ts +3 -0
- package/react/features/base/redux/middleware.ts +43 -0
- package/react/features/base/responsive-ui/actionTypes.ts +66 -0
- package/react/features/base/responsive-ui/actions.ts +163 -0
- package/react/features/base/responsive-ui/components/DimensionsDetector.native.tsx +64 -0
- package/react/features/base/responsive-ui/components/DimensionsDetector.web.ts +0 -0
- package/react/features/base/responsive-ui/constants.ts +28 -0
- package/react/features/base/responsive-ui/functions.ts +21 -0
- package/react/features/base/responsive-ui/middleware.native.ts +29 -0
- package/react/features/base/responsive-ui/middleware.web.ts +82 -0
- package/react/features/base/responsive-ui/reducer.ts +80 -0
- package/react/features/base/settings/actionTypes.ts +23 -0
- package/react/features/base/settings/actions.ts +32 -0
- package/react/features/base/settings/components/native/SettingsButton.tsx +47 -0
- package/react/features/base/settings/constants.ts +4 -0
- package/react/features/base/settings/functions.any.ts +126 -0
- package/react/features/base/settings/functions.native.ts +34 -0
- package/react/features/base/settings/functions.web.ts +216 -0
- package/react/features/base/settings/logger.ts +3 -0
- package/react/features/base/settings/middleware.any.ts +117 -0
- package/react/features/base/settings/middleware.native.ts +96 -0
- package/react/features/base/settings/middleware.web.ts +85 -0
- package/react/features/base/settings/reducer.ts +174 -0
- package/react/features/base/sounds/actionTypes.ts +64 -0
- package/react/features/base/sounds/actions.ts +155 -0
- package/react/features/base/sounds/components/SoundCollection.ts +154 -0
- package/react/features/base/sounds/functions.android.ts +9 -0
- package/react/features/base/sounds/functions.any.ts +11 -0
- package/react/features/base/sounds/functions.ios.ts +12 -0
- package/react/features/base/sounds/functions.web.ts +27 -0
- package/react/features/base/sounds/logger.ts +3 -0
- package/react/features/base/sounds/middleware.any.ts +129 -0
- package/react/features/base/sounds/middleware.native.ts +1 -0
- package/react/features/base/sounds/middleware.web.ts +23 -0
- package/react/features/base/sounds/reducer.ts +144 -0
- package/react/features/base/styles/components/styles/BoxModel.ts +15 -0
- package/react/features/base/styles/components/styles/ColorPalette.ts +34 -0
- package/react/features/base/styles/functions.any.ts +273 -0
- package/react/features/base/styles/functions.native.ts +16 -0
- package/react/features/base/styles/functions.web.ts +24 -0
- package/react/features/base/testing/actionTypes.ts +9 -0
- package/react/features/base/testing/actions.ts +28 -0
- package/react/features/base/testing/components/AbstractTestHint.ts +62 -0
- package/react/features/base/testing/components/TestConnectionInfo.tsx +222 -0
- package/react/features/base/testing/components/TestHint.android.tsx +46 -0
- package/react/features/base/testing/components/TestHint.ios.tsx +34 -0
- package/react/features/base/testing/components/TestHint.web.ts +3 -0
- package/react/features/base/testing/functions.ts +144 -0
- package/react/features/base/testing/logger.ts +3 -0
- package/react/features/base/testing/middleware.ts +123 -0
- package/react/features/base/testing/reducer.ts +47 -0
- package/react/features/base/toolbox/components/AbstractButton.tsx +408 -0
- package/react/features/base/toolbox/components/AbstractHangupButton.ts +32 -0
- package/react/features/base/toolbox/components/AbstractToolboxItem.tsx +229 -0
- package/react/features/base/toolbox/components/BaseAudioMuteButton.ts +60 -0
- package/react/features/base/toolbox/components/BaseVideoMuteButton.ts +59 -0
- package/react/features/base/toolbox/components/ToolboxItem.native.tsx +83 -0
- package/react/features/base/toolbox/components/ToolboxItem.web.tsx +161 -0
- package/react/features/base/toolbox/components/web/ToolboxButtonWithIcon.tsx +162 -0
- package/react/features/base/toolbox/components/web/ToolboxButtonWithPopup.tsx +122 -0
- package/react/features/base/tooltip/actionTypes.ts +19 -0
- package/react/features/base/tooltip/actions.tsx +31 -0
- package/react/features/base/tooltip/components/Tooltip.tsx +157 -0
- package/react/features/base/tooltip/reducer.ts +50 -0
- package/react/features/base/tracks/actionTypes.ts +118 -0
- package/react/features/base/tracks/actions.any.ts +828 -0
- package/react/features/base/tracks/actions.native.ts +68 -0
- package/react/features/base/tracks/actions.web.ts +563 -0
- package/react/features/base/tracks/components/web/AllowToggleCameraDialog.tsx +44 -0
- package/react/features/base/tracks/constants.ts +5 -0
- package/react/features/base/tracks/functions.any.ts +523 -0
- package/react/features/base/tracks/functions.native.ts +44 -0
- package/react/features/base/tracks/functions.web.ts +253 -0
- package/react/features/base/tracks/loadEffects.native.ts +9 -0
- package/react/features/base/tracks/loadEffects.web.ts +41 -0
- package/react/features/base/tracks/logger.ts +3 -0
- package/react/features/base/tracks/middleware.any.ts +200 -0
- package/react/features/base/tracks/middleware.native.ts +76 -0
- package/react/features/base/tracks/middleware.web.ts +269 -0
- package/react/features/base/tracks/reducer.ts +140 -0
- package/react/features/base/tracks/subscriber.ts +40 -0
- package/react/features/base/tracks/types.ts +90 -0
- package/react/features/base/ui/Tokens.ts +241 -0
- package/react/features/base/ui/components/BaseTheme.native.ts +12 -0
- package/react/features/base/ui/components/BaseTheme.web.ts +11 -0
- package/react/features/base/ui/components/GlobalStyles.web.tsx +23 -0
- package/react/features/base/ui/components/JitsiThemeProvider.native.tsx +22 -0
- package/react/features/base/ui/components/JitsiThemeProvider.web.tsx +50 -0
- package/react/features/base/ui/components/native/Button.tsx +120 -0
- package/react/features/base/ui/components/native/IconButton.tsx +71 -0
- package/react/features/base/ui/components/native/Input.tsx +197 -0
- package/react/features/base/ui/components/native/Switch.tsx +60 -0
- package/react/features/base/ui/components/native/buttonStyles.ts +76 -0
- package/react/features/base/ui/components/native/inputStyles.ts +87 -0
- package/react/features/base/ui/components/native/switchStyles.ts +5 -0
- package/react/features/base/ui/components/types.ts +113 -0
- package/react/features/base/ui/components/updateTheme.native.ts +9 -0
- package/react/features/base/ui/components/variables.ts +6 -0
- package/react/features/base/ui/components/web/BaseDialog.tsx +217 -0
- package/react/features/base/ui/components/web/Button.tsx +223 -0
- package/react/features/base/ui/components/web/Checkbox.tsx +185 -0
- package/react/features/base/ui/components/web/ClickableIcon.tsx +61 -0
- package/react/features/base/ui/components/web/ContextMenu.tsx +412 -0
- package/react/features/base/ui/components/web/ContextMenuItem.tsx +272 -0
- package/react/features/base/ui/components/web/ContextMenuItemGroup.tsx +68 -0
- package/react/features/base/ui/components/web/Dialog.tsx +177 -0
- package/react/features/base/ui/components/web/DialogContainer.tsx +96 -0
- package/react/features/base/ui/components/web/DialogTransition.tsx +39 -0
- package/react/features/base/ui/components/web/DialogWithTabs.tsx +418 -0
- package/react/features/base/ui/components/web/HiddenDescription.tsx +29 -0
- package/react/features/base/ui/components/web/Input.tsx +290 -0
- package/react/features/base/ui/components/web/ListItem.tsx +294 -0
- package/react/features/base/ui/components/web/MultiSelect.tsx +179 -0
- package/react/features/base/ui/components/web/Select.tsx +198 -0
- package/react/features/base/ui/components/web/Spinner.tsx +79 -0
- package/react/features/base/ui/components/web/Switch.tsx +138 -0
- package/react/features/base/ui/components/web/Tabs.tsx +167 -0
- package/react/features/base/ui/components/web/TextWithOverflow.tsx +74 -0
- package/react/features/base/ui/constants.any.ts +31 -0
- package/react/features/base/ui/constants.native.ts +1 -0
- package/react/features/base/ui/constants.web.ts +275 -0
- package/react/features/base/ui/functions.any.ts +25 -0
- package/react/features/base/ui/functions.native.ts +51 -0
- package/react/features/base/ui/functions.web.ts +121 -0
- package/react/features/base/ui/hooks/useContextMenu.web.ts +77 -0
- package/react/features/base/ui/jitsiTokens.json +14 -0
- package/react/features/base/ui/tokens.json +211 -0
- package/react/features/base/ui/types.ts +81 -0
- package/react/features/base/ui/utils.ts +42 -0
- package/react/features/base/user-interaction/actionTypes.ts +9 -0
- package/react/features/base/user-interaction/middleware.ts +86 -0
- package/react/features/base/user-interaction/reducer.ts +29 -0
- package/react/features/base/util/contants.ts +1 -0
- package/react/features/base/util/copyText.native.ts +18 -0
- package/react/features/base/util/copyText.web.ts +18 -0
- package/react/features/base/util/downloadJSON.web.ts +35 -0
- package/react/features/base/util/embedUtils.native.ts +26 -0
- package/react/features/base/util/embedUtils.web.ts +12 -0
- package/react/features/base/util/getUnsafeRoomText.native.ts +32 -0
- package/react/features/base/util/getUnsafeRoomText.web.ts +20 -0
- package/react/features/base/util/helpers.ts +182 -0
- package/react/features/base/util/hooks.ts +12 -0
- package/react/features/base/util/httpUtils.ts +81 -0
- package/react/features/base/util/isInsecureRoomName.ts +56 -0
- package/react/features/base/util/loadScript.native.ts +62 -0
- package/react/features/base/util/loadScript.web.ts +18 -0
- package/react/features/base/util/logger.ts +3 -0
- package/react/features/base/util/math.ts +37 -0
- package/react/features/base/util/messageGrouping.ts +79 -0
- package/react/features/base/util/openURLInBrowser.native.ts +16 -0
- package/react/features/base/util/openURLInBrowser.web.ts +12 -0
- package/react/features/base/util/parseURLParams.ts +80 -0
- package/react/features/base/util/spot.ts +16 -0
- package/react/features/base/util/strings.native.ts +23 -0
- package/react/features/base/util/strings.web.ts +20 -0
- package/react/features/base/util/timeoutPromise.ts +34 -0
- package/react/features/base/util/uri.ts +724 -0
- package/react/features/breakout-rooms/actionTypes.ts +15 -0
- package/react/features/breakout-rooms/actions.ts +322 -0
- package/react/features/breakout-rooms/components/native/AddBreakoutRoomButton.tsx +33 -0
- package/react/features/breakout-rooms/components/native/AutoAssignButton.tsx +33 -0
- package/react/features/breakout-rooms/components/native/BreakoutRoomContextMenu.tsx +125 -0
- package/react/features/breakout-rooms/components/native/BreakoutRoomNamePrompt.tsx +35 -0
- package/react/features/breakout-rooms/components/native/BreakoutRoomParticipantItem.tsx +43 -0
- package/react/features/breakout-rooms/components/native/BreakoutRooms.tsx +67 -0
- package/react/features/breakout-rooms/components/native/BreakoutRoomsButton.tsx +53 -0
- package/react/features/breakout-rooms/components/native/CollapsibleRoom.tsx +66 -0
- package/react/features/breakout-rooms/components/native/LeaveBreakoutRoomButton.tsx +36 -0
- package/react/features/breakout-rooms/components/native/styles.ts +76 -0
- package/react/features/breakout-rooms/constants.ts +9 -0
- package/react/features/breakout-rooms/functions.ts +216 -0
- package/react/features/breakout-rooms/logger.ts +3 -0
- package/react/features/breakout-rooms/middleware.ts +107 -0
- package/react/features/breakout-rooms/reducer.ts +46 -0
- package/react/features/breakout-rooms/types.ts +36 -0
- package/react/features/calendar-sync/actionTypes.ts +98 -0
- package/react/features/calendar-sync/actions.any.ts +60 -0
- package/react/features/calendar-sync/actions.native.ts +45 -0
- package/react/features/calendar-sync/actions.web.ts +292 -0
- package/react/features/calendar-sync/components/AddMeetingUrlButton.native.ts +21 -0
- package/react/features/calendar-sync/components/AddMeetingUrlButton.web.tsx +101 -0
- package/react/features/calendar-sync/components/CalendarList.native.tsx +143 -0
- package/react/features/calendar-sync/components/CalendarList.web.tsx +269 -0
- package/react/features/calendar-sync/components/CalendarListContent.native.tsx +249 -0
- package/react/features/calendar-sync/components/CalendarListContent.web.tsx +163 -0
- package/react/features/calendar-sync/components/JoinButton.native.ts +21 -0
- package/react/features/calendar-sync/components/JoinButton.web.tsx +96 -0
- package/react/features/calendar-sync/components/MicrosoftSignInButton.native.ts +0 -0
- package/react/features/calendar-sync/components/MicrosoftSignInButton.web.tsx +52 -0
- package/react/features/calendar-sync/components/UpdateCalendarEventDialog.native.tsx +65 -0
- package/react/features/calendar-sync/components/UpdateCalendarEventDialog.web.ts +0 -0
- package/react/features/calendar-sync/components/styles.ts +182 -0
- package/react/features/calendar-sync/constants.ts +35 -0
- package/react/features/calendar-sync/functions.any.ts +205 -0
- package/react/features/calendar-sync/functions.native.ts +151 -0
- package/react/features/calendar-sync/functions.web.ts +114 -0
- package/react/features/calendar-sync/logger.ts +3 -0
- package/react/features/calendar-sync/middleware.ts +75 -0
- package/react/features/calendar-sync/reducer.tsx +108 -0
- package/react/features/calendar-sync/web/googleCalendar.ts +72 -0
- package/react/features/calendar-sync/web/microsoftCalendar.ts +606 -0
- package/react/features/chat/actionTypes.ts +174 -0
- package/react/features/chat/actions.any.ts +359 -0
- package/react/features/chat/actions.native.ts +30 -0
- package/react/features/chat/actions.web.ts +97 -0
- package/react/features/chat/components/AbstractChatPrivacyDialog.tsx +131 -0
- package/react/features/chat/components/AbstractMessageContainer.ts +65 -0
- package/react/features/chat/components/AbstractMessageRecipient.ts +99 -0
- package/react/features/chat/components/index.native.ts +2 -0
- package/react/features/chat/components/index.web.ts +1 -0
- package/react/features/chat/components/native/Chat.tsx +158 -0
- package/react/features/chat/components/native/ChatButton.ts +78 -0
- package/react/features/chat/components/native/ChatInputBar.tsx +209 -0
- package/react/features/chat/components/native/ChatMessage.tsx +245 -0
- package/react/features/chat/components/native/ChatMessageGroup.tsx +81 -0
- package/react/features/chat/components/native/ChatPrivacyDialog.tsx +30 -0
- package/react/features/chat/components/native/GifMessage.tsx +28 -0
- package/react/features/chat/components/native/MessageContainer.tsx +117 -0
- package/react/features/chat/components/native/MessageRecipient.tsx +163 -0
- package/react/features/chat/components/native/PrivateMessageButton.tsx +110 -0
- package/react/features/chat/components/native/styles.ts +272 -0
- package/react/features/chat/components/web/Chat.tsx +623 -0
- package/react/features/chat/components/web/ChatButton.tsx +98 -0
- package/react/features/chat/components/web/ChatCounter.tsx +74 -0
- package/react/features/chat/components/web/ChatHeader.tsx +88 -0
- package/react/features/chat/components/web/ChatInput.tsx +356 -0
- package/react/features/chat/components/web/ChatMessage.tsx +448 -0
- package/react/features/chat/components/web/ChatMessageGroup.tsx +85 -0
- package/react/features/chat/components/web/ChatPrivacyDialog.tsx +34 -0
- package/react/features/chat/components/web/ClosedCaptionsTab.tsx +182 -0
- package/react/features/chat/components/web/DisplayNameForm.tsx +157 -0
- package/react/features/chat/components/web/EmojiSelector.tsx +60 -0
- package/react/features/chat/components/web/GifMessage.tsx +40 -0
- package/react/features/chat/components/web/KeyboardAvoider.tsx +54 -0
- package/react/features/chat/components/web/MessageContainer.tsx +337 -0
- package/react/features/chat/components/web/MessageMenu.tsx +179 -0
- package/react/features/chat/components/web/MessageRecipient.tsx +99 -0
- package/react/features/chat/components/web/NewMessagesButton.tsx +89 -0
- package/react/features/chat/components/web/PrivateMessageButton.tsx +74 -0
- package/react/features/chat/components/web/ReactButton.tsx +87 -0
- package/react/features/chat/components/web/SmileysPanel.tsx +120 -0
- package/react/features/chat/components/web/SubtitleMessage.tsx +96 -0
- package/react/features/chat/components/web/SubtitlesGroup.tsx +76 -0
- package/react/features/chat/components/web/SubtitlesMessagesContainer.tsx +154 -0
- package/react/features/chat/constants.ts +59 -0
- package/react/features/chat/functions.ts +295 -0
- package/react/features/chat/middleware.ts +780 -0
- package/react/features/chat/reducer.ts +298 -0
- package/react/features/chat/smileys.ts +22 -0
- package/react/features/chat/sounds.ts +7 -0
- package/react/features/chat/subscriber.native.ts +0 -0
- package/react/features/chat/subscriber.web.ts +73 -0
- package/react/features/chat/types.ts +83 -0
- package/react/features/chrome-extension-banner/components/ChromeExtensionBanner.native.ts +0 -0
- package/react/features/chrome-extension-banner/components/ChromeExtensionBanner.web.tsx +352 -0
- package/react/features/chrome-extension-banner/logger.ts +3 -0
- package/react/features/conference/actionTypes.ts +8 -0
- package/react/features/conference/actions.native.ts +78 -0
- package/react/features/conference/actions.web.ts +91 -0
- package/react/features/conference/components/AbstractConference.ts +80 -0
- package/react/features/conference/components/AbstractInsecureRoomNameLabel.tsx +58 -0
- package/react/features/conference/components/ConferenceTimer.tsx +107 -0
- package/react/features/conference/components/constants.ts +15 -0
- package/react/features/conference/components/functions.any.ts +22 -0
- package/react/features/conference/components/functions.native.ts +32 -0
- package/react/features/conference/components/functions.web.ts +12 -0
- package/react/features/conference/components/index.native.ts +1 -0
- package/react/features/conference/components/index.web.ts +1 -0
- package/react/features/conference/components/native/AlwaysOnLabels.tsx +68 -0
- package/react/features/conference/components/native/Conference.tsx +603 -0
- package/react/features/conference/components/native/ConferenceTimerDisplay.tsx +21 -0
- package/react/features/conference/components/native/ExpandedLabelPopup.tsx +36 -0
- package/react/features/conference/components/native/InsecureRoomNameExpandedLabel.tsx +51 -0
- package/react/features/conference/components/native/InsecureRoomNameLabel.tsx +29 -0
- package/react/features/conference/components/native/Labels.tsx +54 -0
- package/react/features/conference/components/native/LonelyMeetingExperience.tsx +159 -0
- package/react/features/conference/components/native/RaisedHandsCountExpandedLabel.ts +24 -0
- package/react/features/conference/components/native/RaisedHandsCountLabel.tsx +25 -0
- package/react/features/conference/components/native/TitleBar.tsx +157 -0
- package/react/features/conference/components/native/carmode/AudioIcon.tsx +17 -0
- package/react/features/conference/components/native/carmode/CarMode.tsx +76 -0
- package/react/features/conference/components/native/carmode/CarModeFooter.tsx +30 -0
- package/react/features/conference/components/native/carmode/EndMeetingButton.tsx +39 -0
- package/react/features/conference/components/native/carmode/EndMeetingIcon.tsx +17 -0
- package/react/features/conference/components/native/carmode/MicrophoneButton.tsx +91 -0
- package/react/features/conference/components/native/carmode/SoundDeviceButton.tsx +36 -0
- package/react/features/conference/components/native/carmode/TitleBar.tsx +86 -0
- package/react/features/conference/components/native/carmode/styles.ts +173 -0
- package/react/features/conference/components/native/constants.ts +66 -0
- package/react/features/conference/components/native/styles.ts +212 -0
- package/react/features/conference/components/web/Conference.tsx +497 -0
- package/react/features/conference/components/web/ConferenceInfo.tsx +226 -0
- package/react/features/conference/components/web/ConferenceInfoContainer.tsx +31 -0
- package/react/features/conference/components/web/ConferenceTimerDisplay.tsx +36 -0
- package/react/features/conference/components/web/InsecureRoomNameLabel.tsx +34 -0
- package/react/features/conference/components/web/LeaveReasonDialog.web.tsx +62 -0
- package/react/features/conference/components/web/Notice.tsx +43 -0
- package/react/features/conference/components/web/RaisedHandsCountLabel.tsx +45 -0
- package/react/features/conference/components/web/SpeakerStatsLabel.tsx +51 -0
- package/react/features/conference/components/web/SubjectText.tsx +54 -0
- package/react/features/conference/components/web/ToggleTopPanelLabel.tsx +28 -0
- package/react/features/conference/constants.ts +12 -0
- package/react/features/conference/extraConstants.ts +5 -0
- package/react/features/conference/functions.any.ts +38 -0
- package/react/features/conference/functions.native.ts +1 -0
- package/react/features/conference/functions.web.ts +33 -0
- package/react/features/conference/logger.ts +3 -0
- package/react/features/conference/middleware.any.ts +350 -0
- package/react/features/conference/middleware.native.ts +28 -0
- package/react/features/conference/middleware.web.ts +46 -0
- package/react/features/connection-indicator/actions.web.ts +19 -0
- package/react/features/connection-indicator/components/AbstractConnectionIndicator.ts +225 -0
- package/react/features/connection-indicator/components/native/ConnectionIndicator.tsx +206 -0
- package/react/features/connection-indicator/components/native/styles.ts +29 -0
- package/react/features/connection-indicator/components/web/BandwidthSettingsDialog.tsx +142 -0
- package/react/features/connection-indicator/components/web/ConnectionIndicator.tsx +405 -0
- package/react/features/connection-indicator/components/web/ConnectionIndicatorContent.tsx +376 -0
- package/react/features/connection-indicator/components/web/ConnectionIndicatorIcon.tsx +111 -0
- package/react/features/connection-indicator/functions.ts +38 -0
- package/react/features/connection-indicator/middleware.ts +23 -0
- package/react/features/connection-indicator/statsEmitter.ts +201 -0
- package/react/features/connection-stats/components/ConnectionStatsTable.tsx +834 -0
- package/react/features/deep-linking/actionTypes.ts +18 -0
- package/react/features/deep-linking/actions.ts +33 -0
- package/react/features/deep-linking/components/DeepLinkingDesktopPage.native.ts +1 -0
- package/react/features/deep-linking/components/DeepLinkingDesktopPage.web.tsx +177 -0
- package/react/features/deep-linking/components/DeepLinkingMobilePage.native.ts +1 -0
- package/react/features/deep-linking/components/DeepLinkingMobilePage.web.tsx +219 -0
- package/react/features/deep-linking/components/NoMobileApp.native.ts +1 -0
- package/react/features/deep-linking/components/NoMobileApp.web.tsx +77 -0
- package/react/features/deep-linking/constants.ts +6 -0
- package/react/features/deep-linking/functions.web.ts +96 -0
- package/react/features/deep-linking/middleware.web.ts +20 -0
- package/react/features/deep-linking/openDesktopApp.web.ts +29 -0
- package/react/features/deep-linking/reducer.ts +20 -0
- package/react/features/desktop-picker/actions.ts +25 -0
- package/react/features/desktop-picker/components/DesktopPicker.tsx +426 -0
- package/react/features/desktop-picker/components/DesktopPickerPane.tsx +131 -0
- package/react/features/desktop-picker/components/DesktopSourcePreview.tsx +145 -0
- package/react/features/desktop-picker/constants.ts +9 -0
- package/react/features/desktop-picker/functions.ts +52 -0
- package/react/features/desktop-picker/logger.ts +3 -0
- package/react/features/device-selection/actions.web.ts +122 -0
- package/react/features/device-selection/components/AudioDevicesSelection.web.tsx +473 -0
- package/react/features/device-selection/components/AudioInputPreview.web.tsx +102 -0
- package/react/features/device-selection/components/AudioOutputPreview.web.tsx +136 -0
- package/react/features/device-selection/components/DeviceHidContainer.web.tsx +107 -0
- package/react/features/device-selection/components/DeviceSelector.native.ts +0 -0
- package/react/features/device-selection/components/DeviceSelector.web.tsx +154 -0
- package/react/features/device-selection/components/VideoDeviceSelection.web.tsx +384 -0
- package/react/features/device-selection/components/VideoInputPreview.web.tsx +74 -0
- package/react/features/device-selection/functions.web.ts +287 -0
- package/react/features/device-selection/logger.ts +3 -0
- package/react/features/device-selection/middleware.ts +24 -0
- package/react/features/display-name/actions.ts +21 -0
- package/react/features/display-name/components/index.native.ts +1 -0
- package/react/features/display-name/components/index.web.ts +1 -0
- package/react/features/display-name/components/native/DisplayNameLabel.tsx +82 -0
- package/react/features/display-name/components/native/DisplayNamePrompt.tsx +44 -0
- package/react/features/display-name/components/native/styles.ts +20 -0
- package/react/features/display-name/components/web/DisplayName.tsx +158 -0
- package/react/features/display-name/components/web/DisplayNameBadge.tsx +41 -0
- package/react/features/display-name/components/web/DisplayNamePrompt.tsx +125 -0
- package/react/features/display-name/components/web/StageParticipantNameLabel.tsx +118 -0
- package/react/features/display-name/components/web/styles.ts +123 -0
- package/react/features/display-name/functions.ts +78 -0
- package/react/features/display-name/middleware.ts +25 -0
- package/react/features/display-name/types.ts +25 -0
- package/react/features/dropbox/actionTypes.ts +9 -0
- package/react/features/dropbox/actions.ts +56 -0
- package/react/features/dropbox/functions.any.ts +48 -0
- package/react/features/dropbox/functions.native.ts +74 -0
- package/react/features/dropbox/functions.web.ts +152 -0
- package/react/features/dropbox/logger.ts +3 -0
- package/react/features/dropbox/reducer.ts +34 -0
- package/react/features/dynamic-branding/actionTypes.ts +19 -0
- package/react/features/dynamic-branding/actions.any.ts +78 -0
- package/react/features/dynamic-branding/actions.native.ts +56 -0
- package/react/features/dynamic-branding/components/native/BrandingImageBackground.tsx +76 -0
- package/react/features/dynamic-branding/components/native/styles.ts +15 -0
- package/react/features/dynamic-branding/functions.any.ts +96 -0
- package/react/features/dynamic-branding/functions.native.ts +9 -0
- package/react/features/dynamic-branding/functions.web.ts +127 -0
- package/react/features/dynamic-branding/logger.ts +3 -0
- package/react/features/dynamic-branding/middleware.any.ts +103 -0
- package/react/features/dynamic-branding/middleware.native.ts +35 -0
- package/react/features/dynamic-branding/middleware.web.ts +27 -0
- package/react/features/dynamic-branding/reducer.ts +290 -0
- package/react/features/e2ee/actionTypes.ts +30 -0
- package/react/features/e2ee/actions.ts +85 -0
- package/react/features/e2ee/components/E2EELabel.tsx +59 -0
- package/react/features/e2ee/components/E2EESection.tsx +174 -0
- package/react/features/e2ee/components/ParticipantVerificationDialog.tsx +123 -0
- package/react/features/e2ee/constants.ts +53 -0
- package/react/features/e2ee/functions.ts +120 -0
- package/react/features/e2ee/logger.ts +3 -0
- package/react/features/e2ee/middleware.ts +215 -0
- package/react/features/e2ee/reducer.ts +44 -0
- package/react/features/e2ee/sounds.ts +13 -0
- package/react/features/embed-meeting/components/EmbedMeetingButton.ts +50 -0
- package/react/features/embed-meeting/components/EmbedMeetingDialog.tsx +81 -0
- package/react/features/embed-meeting/hooks.ts +25 -0
- package/react/features/etherpad/actionTypes.ts +27 -0
- package/react/features/etherpad/actions.ts +51 -0
- package/react/features/etherpad/components/SharedDocumentButton.native.ts +63 -0
- package/react/features/etherpad/components/SharedDocumentButton.web.ts +81 -0
- package/react/features/etherpad/components/native/SharedDocument.tsx +101 -0
- package/react/features/etherpad/components/native/styles.ts +26 -0
- package/react/features/etherpad/functions.ts +33 -0
- package/react/features/etherpad/hooks.ts +24 -0
- package/react/features/etherpad/middleware.ts +73 -0
- package/react/features/etherpad/reducer.ts +48 -0
- package/react/features/external-api/middleware.ts +278 -0
- package/react/features/external-api/subscriber.ts +73 -0
- package/react/features/face-landmarks/FaceLandmarksDetector.ts +355 -0
- package/react/features/face-landmarks/FaceLandmarksHelper.ts +250 -0
- package/react/features/face-landmarks/actionTypes.ts +40 -0
- package/react/features/face-landmarks/actions.ts +48 -0
- package/react/features/face-landmarks/constants.ts +83 -0
- package/react/features/face-landmarks/faceLandmarksWorker.ts +26 -0
- package/react/features/face-landmarks/functions.ts +163 -0
- package/react/features/face-landmarks/logger.ts +3 -0
- package/react/features/face-landmarks/middleware.ts +130 -0
- package/react/features/face-landmarks/reducer.ts +61 -0
- package/react/features/face-landmarks/types.ts +39 -0
- package/react/features/feedback/actionTypes.ts +29 -0
- package/react/features/feedback/actions.web.ts +197 -0
- package/react/features/feedback/components/FeedbackButton.native.ts +0 -0
- package/react/features/feedback/components/FeedbackButton.web.ts +57 -0
- package/react/features/feedback/components/FeedbackDialog.native.ts +3 -0
- package/react/features/feedback/components/FeedbackDialog.web.tsx +330 -0
- package/react/features/feedback/functions.web.ts +70 -0
- package/react/features/feedback/hooks.web.ts +23 -0
- package/react/features/feedback/logger.ts +3 -0
- package/react/features/feedback/reducer.ts +51 -0
- package/react/features/file-sharing/actionTypes.ts +70 -0
- package/react/features/file-sharing/actions.ts +77 -0
- package/react/features/file-sharing/components/web/FileSharing.tsx +460 -0
- package/react/features/file-sharing/constants.ts +4 -0
- package/react/features/file-sharing/functions.any.ts +157 -0
- package/react/features/file-sharing/logger.ts +3 -0
- package/react/features/file-sharing/middleware.web.ts +295 -0
- package/react/features/file-sharing/reducer.ts +68 -0
- package/react/features/file-sharing/types.ts +12 -0
- package/react/features/file-sharing/utils.ts +27 -0
- package/react/features/filmstrip/actionTypes.ts +231 -0
- package/react/features/filmstrip/actions.any.ts +75 -0
- package/react/features/filmstrip/actions.native.ts +85 -0
- package/react/features/filmstrip/actions.web.ts +591 -0
- package/react/features/filmstrip/components/native/AudioMutedIndicator.tsx +20 -0
- package/react/features/filmstrip/components/native/Filmstrip.tsx +337 -0
- package/react/features/filmstrip/components/native/LocalThumbnail.tsx +19 -0
- package/react/features/filmstrip/components/native/ModeratorIndicator.tsx +13 -0
- package/react/features/filmstrip/components/native/PinnedIndicator.tsx +15 -0
- package/react/features/filmstrip/components/native/RaisedHandIndicator.tsx +78 -0
- package/react/features/filmstrip/components/native/ScreenShareIndicator.tsx +15 -0
- package/react/features/filmstrip/components/native/Thumbnail.tsx +444 -0
- package/react/features/filmstrip/components/native/TileView.tsx +299 -0
- package/react/features/filmstrip/components/native/styles.ts +182 -0
- package/react/features/filmstrip/components/web/AudioMutedIndicator.tsx +33 -0
- package/react/features/filmstrip/components/web/AudioTracksContainer.tsx +69 -0
- package/react/features/filmstrip/components/web/Filmstrip.tsx +1151 -0
- package/react/features/filmstrip/components/web/MainFilmstrip.tsx +209 -0
- package/react/features/filmstrip/components/web/ModeratorIndicator.tsx +31 -0
- package/react/features/filmstrip/components/web/PinnedIndicator.tsx +81 -0
- package/react/features/filmstrip/components/web/RaisedHandIndicator.tsx +78 -0
- package/react/features/filmstrip/components/web/ScreenShareIndicator.tsx +30 -0
- package/react/features/filmstrip/components/web/ScreenshareFilmstrip.tsx +132 -0
- package/react/features/filmstrip/components/web/StageFilmstrip.tsx +160 -0
- package/react/features/filmstrip/components/web/StatusIndicators.tsx +123 -0
- package/react/features/filmstrip/components/web/Thumbnail.tsx +1397 -0
- package/react/features/filmstrip/components/web/ThumbnailAudioIndicator.tsx +46 -0
- package/react/features/filmstrip/components/web/ThumbnailBottomIndicators.tsx +96 -0
- package/react/features/filmstrip/components/web/ThumbnailTopIndicators.tsx +158 -0
- package/react/features/filmstrip/components/web/ThumbnailWrapper.tsx +292 -0
- package/react/features/filmstrip/components/web/VideoMenuTriggerButton.tsx +76 -0
- package/react/features/filmstrip/components/web/VirtualScreenshareParticipant.tsx +183 -0
- package/react/features/filmstrip/constants.ts +300 -0
- package/react/features/filmstrip/functions.any.ts +110 -0
- package/react/features/filmstrip/functions.native.ts +289 -0
- package/react/features/filmstrip/functions.web.ts +832 -0
- package/react/features/filmstrip/logger.ts +3 -0
- package/react/features/filmstrip/middleware.native.ts +37 -0
- package/react/features/filmstrip/middleware.web.ts +346 -0
- package/react/features/filmstrip/reducer.ts +418 -0
- package/react/features/filmstrip/subscriber.any.ts +35 -0
- package/react/features/filmstrip/subscriber.native.ts +42 -0
- package/react/features/filmstrip/subscriber.web.ts +237 -0
- package/react/features/follow-me/actionTypes.ts +43 -0
- package/react/features/follow-me/actions.ts +73 -0
- package/react/features/follow-me/constants.ts +6 -0
- package/react/features/follow-me/functions.ts +28 -0
- package/react/features/follow-me/logger.ts +3 -0
- package/react/features/follow-me/middleware.ts +238 -0
- package/react/features/follow-me/reducer.ts +54 -0
- package/react/features/follow-me/subscriber.ts +141 -0
- package/react/features/gifs/actionTypes.ts +46 -0
- package/react/features/gifs/actions.ts +74 -0
- package/react/features/gifs/components/native/GifsMenu.tsx +63 -0
- package/react/features/gifs/components/native/GifsMenuFooter.tsx +27 -0
- package/react/features/gifs/components/native/styles.ts +36 -0
- package/react/features/gifs/components/web/GifsMenu.tsx +253 -0
- package/react/features/gifs/components/web/GifsMenuButton.tsx +41 -0
- package/react/features/gifs/constants.ts +14 -0
- package/react/features/gifs/function.any.ts +150 -0
- package/react/features/gifs/functions.native.ts +1 -0
- package/react/features/gifs/functions.web.ts +13 -0
- package/react/features/gifs/middleware.any.ts +61 -0
- package/react/features/gifs/middleware.native.ts +3 -0
- package/react/features/gifs/middleware.web.ts +2 -0
- package/react/features/gifs/reducer.ts +75 -0
- package/react/features/gifs/subscriber.native.ts +20 -0
- package/react/features/google-api/actionTypes.ts +19 -0
- package/react/features/google-api/actions.ts +226 -0
- package/react/features/google-api/components/GoogleSignInButton.native.tsx +81 -0
- package/react/features/google-api/components/GoogleSignInButton.web.tsx +61 -0
- package/react/features/google-api/components/styles.ts +39 -0
- package/react/features/google-api/constants.ts +76 -0
- package/react/features/google-api/googleApi.native.js +191 -0
- package/react/features/google-api/googleApi.web.js +461 -0
- package/react/features/google-api/logger.ts +3 -0
- package/react/features/google-api/reducer.ts +45 -0
- package/react/features/invite/_utils.ts +83 -0
- package/react/features/invite/actionTypes.ts +72 -0
- package/react/features/invite/actions.any.ts +297 -0
- package/react/features/invite/actions.native.ts +25 -0
- package/react/features/invite/actions.web.ts +1 -0
- package/react/features/invite/components/add-people-dialog/AbstractAddPeopleDialog.tsx +323 -0
- package/react/features/invite/components/add-people-dialog/native/AddPeopleDialog.tsx +585 -0
- package/react/features/invite/components/add-people-dialog/native/styles.ts +120 -0
- package/react/features/invite/components/add-people-dialog/web/AddPeopleDialog.tsx +238 -0
- package/react/features/invite/components/add-people-dialog/web/CopyMeetingLinkSection.tsx +50 -0
- package/react/features/invite/components/add-people-dialog/web/DialInLimit.tsx +55 -0
- package/react/features/invite/components/add-people-dialog/web/DialInNumber.tsx +138 -0
- package/react/features/invite/components/add-people-dialog/web/DialInSection.tsx +71 -0
- package/react/features/invite/components/add-people-dialog/web/InviteButton.ts +33 -0
- package/react/features/invite/components/add-people-dialog/web/InviteByEmailSection.tsx +204 -0
- package/react/features/invite/components/add-people-dialog/web/InviteContactsForm.tsx +517 -0
- package/react/features/invite/components/add-people-dialog/web/InviteContactsSection.tsx +23 -0
- package/react/features/invite/components/add-people-dialog/web/LiveStreamSection.tsx +110 -0
- package/react/features/invite/components/callee-info/CalleeInfo.tsx +167 -0
- package/react/features/invite/components/callee-info/CalleeInfoContainer.tsx +64 -0
- package/react/features/invite/components/callee-info/styles.native.ts +50 -0
- package/react/features/invite/components/callee-info/styles.web.ts +1 -0
- package/react/features/invite/components/dial-in-info-page/DialInInfoApp.native.ts +0 -0
- package/react/features/invite/components/dial-in-info-page/DialInInfoApp.web.tsx +41 -0
- package/react/features/invite/components/dial-in-info-page/NoRoomError.native.ts +0 -0
- package/react/features/invite/components/dial-in-info-page/NoRoomError.web.tsx +26 -0
- package/react/features/invite/components/dial-in-summary/native/DialInSummary.tsx +137 -0
- package/react/features/invite/components/dial-in-summary/native/DialInSummaryErrorDialog.tsx +26 -0
- package/react/features/invite/components/dial-in-summary/native/styles.ts +25 -0
- package/react/features/invite/components/dial-in-summary/web/ConferenceID.tsx +78 -0
- package/react/features/invite/components/dial-in-summary/web/DialInSummary.tsx +312 -0
- package/react/features/invite/components/dial-in-summary/web/DialInSummaryApp.tsx +71 -0
- package/react/features/invite/components/dial-in-summary/web/NumbersList.tsx +210 -0
- package/react/features/invite/constants.ts +60 -0
- package/react/features/invite/functions.ts +985 -0
- package/react/features/invite/logger.ts +3 -0
- package/react/features/invite/middleware.any.ts +206 -0
- package/react/features/invite/middleware.native.ts +0 -0
- package/react/features/invite/middleware.web.ts +66 -0
- package/react/features/invite/reducer.ts +107 -0
- package/react/features/invite/sounds.ts +44 -0
- package/react/features/invite/types.ts +20 -0
- package/react/features/jaas/actionTypes.ts +4 -0
- package/react/features/jaas/actions.any.ts +46 -0
- package/react/features/jaas/actions.native.ts +11 -0
- package/react/features/jaas/actions.web.ts +25 -0
- package/react/features/jaas/components/web/PremiumFeatureDialog.tsx +56 -0
- package/react/features/jaas/constants.ts +17 -0
- package/react/features/jaas/functions.ts +170 -0
- package/react/features/jaas/logger.ts +3 -0
- package/react/features/jaas/middleware.any.ts +39 -0
- package/react/features/jaas/middleware.native.ts +0 -0
- package/react/features/jaas/middleware.web.ts +47 -0
- package/react/features/jaas/reducer.ts +32 -0
- package/react/features/keyboard-shortcuts/actionTypes.ts +24 -0
- package/react/features/keyboard-shortcuts/actions.ts +240 -0
- package/react/features/keyboard-shortcuts/components/KeyboardShortcutsButton.ts +49 -0
- package/react/features/keyboard-shortcuts/functions.ts +31 -0
- package/react/features/keyboard-shortcuts/hooks.ts +25 -0
- package/react/features/keyboard-shortcuts/logger.ts +3 -0
- package/react/features/keyboard-shortcuts/middleware.ts +52 -0
- package/react/features/keyboard-shortcuts/reducer.ts +72 -0
- package/react/features/keyboard-shortcuts/types.ts +23 -0
- package/react/features/keyboard-shortcuts/utils.ts +79 -0
- package/react/features/large-video/actionTypes.ts +43 -0
- package/react/features/large-video/actions.any.ts +197 -0
- package/react/features/large-video/actions.native.ts +1 -0
- package/react/features/large-video/actions.web.ts +102 -0
- package/react/features/large-video/components/LargeVideo.native.tsx +266 -0
- package/react/features/large-video/components/LargeVideo.web.tsx +406 -0
- package/react/features/large-video/components/LargeVideoBackground.native.ts +0 -0
- package/react/features/large-video/components/LargeVideoBackground.web.tsx +260 -0
- package/react/features/large-video/components/ScreenSharePlaceholder.web.tsx +100 -0
- package/react/features/large-video/components/styles.ts +4 -0
- package/react/features/large-video/functions.ts +30 -0
- package/react/features/large-video/logger.ts +3 -0
- package/react/features/large-video/middleware.ts +74 -0
- package/react/features/large-video/reducer.ts +64 -0
- package/react/features/large-video/subscriber.any.ts +26 -0
- package/react/features/large-video/subscriber.native.ts +1 -0
- package/react/features/large-video/subscriber.web.ts +39 -0
- package/react/features/lobby/actionTypes.ts +39 -0
- package/react/features/lobby/actions.any.ts +429 -0
- package/react/features/lobby/actions.native.ts +23 -0
- package/react/features/lobby/actions.web.ts +18 -0
- package/react/features/lobby/components/AbstractLobbyScreen.tsx +484 -0
- package/react/features/lobby/components/native/LobbyChatScreen.tsx +44 -0
- package/react/features/lobby/components/native/LobbyScreen.tsx +323 -0
- package/react/features/lobby/components/native/styles.ts +58 -0
- package/react/features/lobby/components/web/LobbyScreen.tsx +319 -0
- package/react/features/lobby/components/web/LobbySection.tsx +122 -0
- package/react/features/lobby/constants.ts +25 -0
- package/react/features/lobby/functions.ts +105 -0
- package/react/features/lobby/logger.ts +3 -0
- package/react/features/lobby/middleware.ts +436 -0
- package/react/features/lobby/reducer.ts +166 -0
- package/react/features/lobby/sounds.ts +5 -0
- package/react/features/lobby/types.ts +5 -0
- package/react/features/mobile/audio-mode/actionTypes.ts +23 -0
- package/react/features/mobile/audio-mode/components/AudioDeviceToggleButton.ts +30 -0
- package/react/features/mobile/audio-mode/components/AudioRoutePickerDialog.tsx +329 -0
- package/react/features/mobile/audio-mode/components/styles.ts +46 -0
- package/react/features/mobile/audio-mode/logger.ts +3 -0
- package/react/features/mobile/audio-mode/middleware.ts +185 -0
- package/react/features/mobile/audio-mode/reducer.ts +36 -0
- package/react/features/mobile/background/actionTypes.ts +26 -0
- package/react/features/mobile/background/actions.ts +39 -0
- package/react/features/mobile/background/logger.ts +3 -0
- package/react/features/mobile/background/middleware.native.ts +83 -0
- package/react/features/mobile/background/reducer.ts +37 -0
- package/react/features/mobile/call-integration/CallKit.ts +66 -0
- package/react/features/mobile/call-integration/CallKitIcon.png +0 -0
- package/react/features/mobile/call-integration/ConnectionService.ts +33 -0
- package/react/features/mobile/call-integration/actionTypes.ts +13 -0
- package/react/features/mobile/call-integration/functions.ts +20 -0
- package/react/features/mobile/call-integration/middleware.ts +520 -0
- package/react/features/mobile/call-integration/reducer.ts +21 -0
- package/react/features/mobile/external-api/actionTypes.ts +20 -0
- package/react/features/mobile/external-api/actions.ts +33 -0
- package/react/features/mobile/external-api/functions.ts +47 -0
- package/react/features/mobile/external-api/logger.ts +3 -0
- package/react/features/mobile/external-api/middleware.ts +881 -0
- package/react/features/mobile/external-api/reducer.ts +25 -0
- package/react/features/mobile/navigation/actionTypes.ts +1 -0
- package/react/features/mobile/navigation/components/ConnectingPage.tsx +30 -0
- package/react/features/mobile/navigation/components/HeaderNavigationButton.tsx +103 -0
- package/react/features/mobile/navigation/components/RootNavigationContainer.tsx +130 -0
- package/react/features/mobile/navigation/components/TabBarLabelCounter.tsx +39 -0
- package/react/features/mobile/navigation/components/chat/components/ChatAndPollsNavigator.tsx +62 -0
- package/react/features/mobile/navigation/components/conference/ConferenceNavigationContainerRef.ts +35 -0
- package/react/features/mobile/navigation/components/conference/components/ConferenceNavigationContainer.tsx +232 -0
- package/react/features/mobile/navigation/components/lobby/LobbyNavigationContainerRef.ts +24 -0
- package/react/features/mobile/navigation/components/lobby/components/LobbyNavigationContainer.tsx +52 -0
- package/react/features/mobile/navigation/components/settings/SettingsNavigationContainerRef.ts +24 -0
- package/react/features/mobile/navigation/components/settings/components/SettingsNavigationContainer.tsx +91 -0
- package/react/features/mobile/navigation/components/styles.ts +114 -0
- package/react/features/mobile/navigation/components/welcome/components/WelcomePageTabs.tsx +120 -0
- package/react/features/mobile/navigation/functions.tsx +88 -0
- package/react/features/mobile/navigation/middleware.ts +38 -0
- package/react/features/mobile/navigation/rootNavigationContainerRef.ts +51 -0
- package/react/features/mobile/navigation/routes.ts +55 -0
- package/react/features/mobile/navigation/screenOptions.ts +260 -0
- package/react/features/mobile/permissions/functions.ts +29 -0
- package/react/features/mobile/permissions/middleware.ts +66 -0
- package/react/features/mobile/picture-in-picture/actionTypes.ts +11 -0
- package/react/features/mobile/picture-in-picture/actions.ts +42 -0
- package/react/features/mobile/picture-in-picture/components/PictureInPictureButton.ts +65 -0
- package/react/features/mobile/picture-in-picture/functions.ts +36 -0
- package/react/features/mobile/picture-in-picture/logger.ts +3 -0
- package/react/features/mobile/polyfills/RTCPeerConnection.js +19 -0
- package/react/features/mobile/polyfills/Storage.js +192 -0
- package/react/features/mobile/polyfills/browser.js +338 -0
- package/react/features/mobile/polyfills/custom.js +4 -0
- package/react/features/mobile/polyfills/index.js +2 -0
- package/react/features/mobile/polyfills/ipv6utils.js +197 -0
- package/react/features/mobile/polyfills/querySelectorPolyfill.js +282 -0
- package/react/features/mobile/polyfills/webrtc.js +11 -0
- package/react/features/mobile/proximity/middleware.ts +34 -0
- package/react/features/mobile/react-native-sdk/functions.js +13 -0
- package/react/features/mobile/react-native-sdk/middleware.js +108 -0
- package/react/features/mobile/wake-lock/middleware.ts +35 -0
- package/react/features/no-audio-signal/actionTypes.ts +11 -0
- package/react/features/no-audio-signal/actions.ts +19 -0
- package/react/features/no-audio-signal/components/DialInLink.tsx +73 -0
- package/react/features/no-audio-signal/constants.ts +6 -0
- package/react/features/no-audio-signal/middleware.tsx +126 -0
- package/react/features/no-audio-signal/reducer.ts +20 -0
- package/react/features/no-audio-signal/sounds.ts +6 -0
- package/react/features/noise-detection/actionTypes.ts +11 -0
- package/react/features/noise-detection/actions.ts +19 -0
- package/react/features/noise-detection/constants.ts +6 -0
- package/react/features/noise-detection/middleware.ts +57 -0
- package/react/features/noise-detection/reducer.ts +21 -0
- package/react/features/noise-detection/sounds.ts +6 -0
- package/react/features/noise-suppression/actionTypes.ts +9 -0
- package/react/features/noise-suppression/actions.ts +98 -0
- package/react/features/noise-suppression/components/NoiseSuppressionButton.tsx +67 -0
- package/react/features/noise-suppression/functions.ts +49 -0
- package/react/features/noise-suppression/logger.ts +3 -0
- package/react/features/noise-suppression/reducer.ts +36 -0
- package/react/features/notifications/actionTypes.ts +45 -0
- package/react/features/notifications/actions.ts +346 -0
- package/react/features/notifications/components/NotificationsTransition.tsx +70 -0
- package/react/features/notifications/components/index.native.ts +1 -0
- package/react/features/notifications/components/index.web.ts +1 -0
- package/react/features/notifications/components/native/Notification.tsx +236 -0
- package/react/features/notifications/components/native/NotificationsContainer.tsx +239 -0
- package/react/features/notifications/components/native/styles.ts +141 -0
- package/react/features/notifications/components/web/Notification.tsx +378 -0
- package/react/features/notifications/components/web/NotificationsContainer.tsx +117 -0
- package/react/features/notifications/constants.ts +137 -0
- package/react/features/notifications/functions.ts +41 -0
- package/react/features/notifications/middleware.ts +210 -0
- package/react/features/notifications/reducer.ts +131 -0
- package/react/features/notifications/types.ts +23 -0
- package/react/features/old-client-notification/components/OldElectronAPPNotificationDescription.tsx +37 -0
- package/react/features/old-client-notification/functions.ts +27 -0
- package/react/features/old-client-notification/middleware.tsx +41 -0
- package/react/features/overlay/actionTypes.ts +19 -0
- package/react/features/overlay/actions.native.ts +21 -0
- package/react/features/overlay/actions.web.ts +54 -0
- package/react/features/overlay/components/web/AbstractBasePageOverlay.tsx +32 -0
- package/react/features/overlay/components/web/AbstractConferenceNotFoundOverlay.tsx +32 -0
- package/react/features/overlay/components/web/AbstractPageReloadOverlay.tsx +281 -0
- package/react/features/overlay/components/web/AbstractSuspendedOverlay.ts +22 -0
- package/react/features/overlay/components/web/BasePageOverlay.tsx +60 -0
- package/react/features/overlay/components/web/ConferenceNotFoundOverlay.tsx +69 -0
- package/react/features/overlay/components/web/OverlayContainer.tsx +59 -0
- package/react/features/overlay/components/web/OverlayFrame.tsx +49 -0
- package/react/features/overlay/components/web/PageReloadOverlay.tsx +55 -0
- package/react/features/overlay/components/web/ReloadButton.tsx +43 -0
- package/react/features/overlay/components/web/SuspendedOverlay.tsx +39 -0
- package/react/features/overlay/functions.web.ts +33 -0
- package/react/features/overlay/logger.ts +3 -0
- package/react/features/overlay/middleware.ts +130 -0
- package/react/features/overlay/reducer.ts +70 -0
- package/react/features/participants-pane/actionTypes.ts +14 -0
- package/react/features/participants-pane/actions.any.ts +12 -0
- package/react/features/participants-pane/actions.native.ts +105 -0
- package/react/features/participants-pane/actions.web.ts +14 -0
- package/react/features/participants-pane/components/breakout-rooms/components/web/AddBreakoutRoomButton.tsx +36 -0
- package/react/features/participants-pane/components/breakout-rooms/components/web/AutoAssignButton.tsx +30 -0
- package/react/features/participants-pane/components/breakout-rooms/components/web/BreakoutRoomNamePrompt.tsx +47 -0
- package/react/features/participants-pane/components/breakout-rooms/components/web/CollapsibleRoom.tsx +195 -0
- package/react/features/participants-pane/components/breakout-rooms/components/web/JoinQuickActionButton.tsx +52 -0
- package/react/features/participants-pane/components/breakout-rooms/components/web/LeaveButton.tsx +33 -0
- package/react/features/participants-pane/components/breakout-rooms/components/web/RenameButton.tsx +53 -0
- package/react/features/participants-pane/components/breakout-rooms/components/web/RoomActionEllipsis.tsx +27 -0
- package/react/features/participants-pane/components/breakout-rooms/components/web/RoomContextMenu.tsx +122 -0
- package/react/features/participants-pane/components/breakout-rooms/components/web/RoomList.tsx +110 -0
- package/react/features/participants-pane/components/breakout-rooms/components/web/RoomParticipantContextMenu.tsx +135 -0
- package/react/features/participants-pane/components/native/CollapsibleList.tsx +54 -0
- package/react/features/participants-pane/components/native/ContextMenuLobbyParticipantReject.tsx +67 -0
- package/react/features/participants-pane/components/native/ContextMenuMore.tsx +124 -0
- package/react/features/participants-pane/components/native/LobbyParticipantItem.tsx +45 -0
- package/react/features/participants-pane/components/native/LobbyParticipantList.tsx +57 -0
- package/react/features/participants-pane/components/native/MeetingParticipantItem.tsx +195 -0
- package/react/features/participants-pane/components/native/MeetingParticipantList.tsx +121 -0
- package/react/features/participants-pane/components/native/ParticipantItem.tsx +145 -0
- package/react/features/participants-pane/components/native/ParticipantsConter.tsx +15 -0
- package/react/features/participants-pane/components/native/ParticipantsPane.tsx +50 -0
- package/react/features/participants-pane/components/native/ParticipantsPaneButton.tsx +90 -0
- package/react/features/participants-pane/components/native/ParticipantsPaneFooter.tsx +95 -0
- package/react/features/participants-pane/components/native/RaisedHandIndicator.tsx +16 -0
- package/react/features/participants-pane/components/native/RoomParticipantMenu.tsx +145 -0
- package/react/features/participants-pane/components/native/VisitorsItem.tsx +46 -0
- package/react/features/participants-pane/components/native/VisitorsList.tsx +90 -0
- package/react/features/participants-pane/components/native/styles.ts +293 -0
- package/react/features/participants-pane/components/web/CurrentVisitorsList.tsx +172 -0
- package/react/features/participants-pane/components/web/FooterContextMenu.tsx +198 -0
- package/react/features/participants-pane/components/web/InviteButton.tsx +46 -0
- package/react/features/participants-pane/components/web/LobbyParticipantItem.tsx +140 -0
- package/react/features/participants-pane/components/web/LobbyParticipantItems.tsx +59 -0
- package/react/features/participants-pane/components/web/LobbyParticipants.tsx +135 -0
- package/react/features/participants-pane/components/web/MeetingParticipantContextMenu.tsx +143 -0
- package/react/features/participants-pane/components/web/MeetingParticipantItem.tsx +318 -0
- package/react/features/participants-pane/components/web/MeetingParticipantItems.tsx +106 -0
- package/react/features/participants-pane/components/web/MeetingParticipants.tsx +192 -0
- package/react/features/participants-pane/components/web/ParticipantActionEllipsis.tsx +30 -0
- package/react/features/participants-pane/components/web/ParticipantItem.tsx +199 -0
- package/react/features/participants-pane/components/web/ParticipantQuickAction.tsx +170 -0
- package/react/features/participants-pane/components/web/ParticipantsCounter.tsx +33 -0
- package/react/features/participants-pane/components/web/ParticipantsPane.tsx +247 -0
- package/react/features/participants-pane/components/web/ParticipantsPaneButton.tsx +138 -0
- package/react/features/participants-pane/components/web/RaisedHandIndicator.tsx +29 -0
- package/react/features/participants-pane/components/web/VisitorsItem.tsx +80 -0
- package/react/features/participants-pane/components/web/VisitorsList.tsx +139 -0
- package/react/features/participants-pane/constants.tsx +123 -0
- package/react/features/participants-pane/functions.ts +327 -0
- package/react/features/participants-pane/hooks.web.ts +81 -0
- package/react/features/participants-pane/middleware.ts +28 -0
- package/react/features/participants-pane/reducer.ts +54 -0
- package/react/features/participants-pane/types.ts +36 -0
- package/react/features/polls/actionTypes.ts +93 -0
- package/react/features/polls/actions.ts +164 -0
- package/react/features/polls/components/AbstractPollAnswer.tsx +116 -0
- package/react/features/polls/components/AbstractPollCreate.tsx +182 -0
- package/react/features/polls/components/AbstractPollResults.tsx +119 -0
- package/react/features/polls/components/AbstractPollsPane.tsx +47 -0
- package/react/features/polls/components/native/PollAnswer.tsx +120 -0
- package/react/features/polls/components/native/PollCreate.tsx +219 -0
- package/react/features/polls/components/native/PollItem.tsx +45 -0
- package/react/features/polls/components/native/PollResults.tsx +149 -0
- package/react/features/polls/components/native/PollsList.tsx +70 -0
- package/react/features/polls/components/native/PollsPane.tsx +78 -0
- package/react/features/polls/components/native/styles.ts +239 -0
- package/react/features/polls/components/web/PollAnswer.tsx +156 -0
- package/react/features/polls/components/web/PollCreate.tsx +284 -0
- package/react/features/polls/components/web/PollItem.tsx +42 -0
- package/react/features/polls/components/web/PollResults.tsx +182 -0
- package/react/features/polls/components/web/PollsList.tsx +93 -0
- package/react/features/polls/components/web/PollsPane.tsx +55 -0
- package/react/features/polls/constants.ts +2 -0
- package/react/features/polls/functions.ts +87 -0
- package/react/features/polls/logger.ts +3 -0
- package/react/features/polls/middleware.ts +134 -0
- package/react/features/polls/reducer.ts +186 -0
- package/react/features/polls/types.ts +119 -0
- package/react/features/polls-history/actionTypes.ts +23 -0
- package/react/features/polls-history/actions.ts +47 -0
- package/react/features/polls-history/middleware.ts +46 -0
- package/react/features/polls-history/reducer.ts +52 -0
- package/react/features/power-monitor/actionTypes.ts +19 -0
- package/react/features/power-monitor/actions.ts +37 -0
- package/react/features/power-monitor/middleware.ts +68 -0
- package/react/features/power-monitor/reducer.ts +56 -0
- package/react/features/prejoin/actionTypes.ts +50 -0
- package/react/features/prejoin/actions.native.ts +23 -0
- package/react/features/prejoin/actions.web.ts +464 -0
- package/react/features/prejoin/components/native/Prejoin.tsx +234 -0
- package/react/features/prejoin/components/native/RecordingWarning.tsx +28 -0
- package/react/features/prejoin/components/native/UnsafeRoomWarning.tsx +122 -0
- package/react/features/prejoin/components/native/styles.ts +184 -0
- package/react/features/prejoin/components/web/Label.tsx +46 -0
- package/react/features/prejoin/components/web/Prejoin.tsx +533 -0
- package/react/features/prejoin/components/web/PrejoinApp.tsx +96 -0
- package/react/features/prejoin/components/web/PrejoinThirdParty.tsx +81 -0
- package/react/features/prejoin/components/web/country-picker/CountryDropdown.tsx +47 -0
- package/react/features/prejoin/components/web/country-picker/CountryPicker.tsx +163 -0
- package/react/features/prejoin/components/web/country-picker/CountryRow.tsx +66 -0
- package/react/features/prejoin/components/web/country-picker/CountrySelector.tsx +76 -0
- package/react/features/prejoin/components/web/dialogs/CallingDialog.tsx +82 -0
- package/react/features/prejoin/components/web/dialogs/DialInDialog.tsx +172 -0
- package/react/features/prejoin/components/web/dialogs/DialOutDialog.tsx +100 -0
- package/react/features/prejoin/components/web/dialogs/JoinByPhoneDialog.tsx +239 -0
- package/react/features/prejoin/components/web/preview/DeviceStatus.tsx +78 -0
- package/react/features/prejoin/functions.any.ts +215 -0
- package/react/features/prejoin/functions.native.ts +1 -0
- package/react/features/prejoin/functions.web.ts +32 -0
- package/react/features/prejoin/logger.ts +3 -0
- package/react/features/prejoin/middleware.web.ts +93 -0
- package/react/features/prejoin/reducer.ts +179 -0
- package/react/features/prejoin/types.ts +3 -0
- package/react/features/prejoin/utils.ts +805 -0
- package/react/features/presence-status/components/PresenceLabel.tsx +129 -0
- package/react/features/presence-status/constants.ts +127 -0
- package/react/features/presence-status/functions.ts +8 -0
- package/react/features/reactions/actionTypes.ts +65 -0
- package/react/features/reactions/actions.any.ts +114 -0
- package/react/features/reactions/actions.native.ts +1 -0
- package/react/features/reactions/actions.web.ts +17 -0
- package/react/features/reactions/components/native/RaiseHandButton.tsx +192 -0
- package/react/features/reactions/components/native/RaiseHandContainerButtons.tsx +20 -0
- package/react/features/reactions/components/native/ReactionButton.tsx +105 -0
- package/react/features/reactions/components/native/ReactionEmoji.tsx +94 -0
- package/react/features/reactions/components/native/ReactionMenu.tsx +76 -0
- package/react/features/reactions/components/native/ReactionMenuDialog.tsx +141 -0
- package/react/features/reactions/components/native/ReactionsMenuButton.ts +85 -0
- package/react/features/reactions/components/native/styles.ts +11 -0
- package/react/features/reactions/components/web/RaiseHandButton.ts +95 -0
- package/react/features/reactions/components/web/RaiseHandContainerButtons.tsx +26 -0
- package/react/features/reactions/components/web/ReactionButton.tsx +231 -0
- package/react/features/reactions/components/web/ReactionEmoji.tsx +94 -0
- package/react/features/reactions/components/web/ReactionsAnimations.tsx +29 -0
- package/react/features/reactions/components/web/ReactionsMenu.tsx +259 -0
- package/react/features/reactions/components/web/ReactionsMenuButton.tsx +188 -0
- package/react/features/reactions/constants.ts +196 -0
- package/react/features/reactions/functions.any.ts +174 -0
- package/react/features/reactions/functions.native.ts +1 -0
- package/react/features/reactions/functions.web.ts +27 -0
- package/react/features/reactions/hooks.web.ts +23 -0
- package/react/features/reactions/logger.ts +3 -0
- package/react/features/reactions/middleware.ts +271 -0
- package/react/features/reactions/reducer.ts +121 -0
- package/react/features/reactions/sounds.ts +55 -0
- package/react/features/reactions/types.ts +5 -0
- package/react/features/recent-list/actionTypes.ts +34 -0
- package/react/features/recent-list/actions.ts +58 -0
- package/react/features/recent-list/components/AbstractRecentList.tsx +97 -0
- package/react/features/recent-list/components/DeleteItemButton.native.ts +37 -0
- package/react/features/recent-list/components/RecentList.native.tsx +128 -0
- package/react/features/recent-list/components/RecentList.web.tsx +105 -0
- package/react/features/recent-list/components/RecentListItemMenu.native.tsx +102 -0
- package/react/features/recent-list/components/ShowDialInInfoButton.native.tsx +40 -0
- package/react/features/recent-list/components/styles.native.ts +45 -0
- package/react/features/recent-list/components/styles.web.ts +4 -0
- package/react/features/recent-list/functions.native.ts +157 -0
- package/react/features/recent-list/functions.web.ts +33 -0
- package/react/features/recent-list/logger.ts +3 -0
- package/react/features/recent-list/middleware.ts +151 -0
- package/react/features/recent-list/reducer.ts +153 -0
- package/react/features/recent-list/types.ts +5 -0
- package/react/features/recording/actionTypes.ts +104 -0
- package/react/features/recording/actions.any.ts +493 -0
- package/react/features/recording/actions.native.ts +72 -0
- package/react/features/recording/actions.web.tsx +83 -0
- package/react/features/recording/components/AbstractRecordingLabel.ts +96 -0
- package/react/features/recording/components/LiveStream/AbstractLiveStreamButton.ts +157 -0
- package/react/features/recording/components/LiveStream/AbstractStartLiveStreamDialog.ts +251 -0
- package/react/features/recording/components/LiveStream/AbstractStopLiveStreamDialog.ts +84 -0
- package/react/features/recording/components/LiveStream/AbstractStreamKeyForm.ts +179 -0
- package/react/features/recording/components/LiveStream/constants.ts +26 -0
- package/react/features/recording/components/LiveStream/functions.ts +28 -0
- package/react/features/recording/components/LiveStream/native/GoogleSigninForm.tsx +229 -0
- package/react/features/recording/components/LiveStream/native/LiveStreamButton.ts +63 -0
- package/react/features/recording/components/LiveStream/native/StartLiveStreamDialog.tsx +160 -0
- package/react/features/recording/components/LiveStream/native/StopLiveStreamDialog.tsx +33 -0
- package/react/features/recording/components/LiveStream/native/StreamKeyForm.tsx +164 -0
- package/react/features/recording/components/LiveStream/native/StreamKeyPicker.tsx +168 -0
- package/react/features/recording/components/LiveStream/native/styles.ts +146 -0
- package/react/features/recording/components/LiveStream/web/LiveStreamButton.ts +65 -0
- package/react/features/recording/components/LiveStream/web/StartLiveStreamDialog.tsx +361 -0
- package/react/features/recording/components/LiveStream/web/StopLiveStreamDialog.tsx +36 -0
- package/react/features/recording/components/LiveStream/web/StreamKeyForm.tsx +112 -0
- package/react/features/recording/components/LiveStream/web/StreamKeyPicker.tsx +126 -0
- package/react/features/recording/components/Recording/AbstractHighlightButton.ts +126 -0
- package/react/features/recording/components/Recording/AbstractRecordButton.ts +138 -0
- package/react/features/recording/components/Recording/AbstractStartRecordingDialog.ts +484 -0
- package/react/features/recording/components/Recording/AbstractStartRecordingDialogContent.tsx +432 -0
- package/react/features/recording/components/Recording/AbstractStopRecordingDialog.ts +152 -0
- package/react/features/recording/components/Recording/LocalRecordingManager.native.ts +64 -0
- package/react/features/recording/components/Recording/LocalRecordingManager.web.ts +378 -0
- package/react/features/recording/components/Recording/index.native.ts +2 -0
- package/react/features/recording/components/Recording/index.web.ts +2 -0
- package/react/features/recording/components/Recording/native/HighlightButton.tsx +58 -0
- package/react/features/recording/components/Recording/native/HighlightDialog.tsx +51 -0
- package/react/features/recording/components/Recording/native/RecordButton.ts +68 -0
- package/react/features/recording/components/Recording/native/RecordingConsentDialog.tsx +64 -0
- package/react/features/recording/components/Recording/native/StartRecordingDialog.tsx +170 -0
- package/react/features/recording/components/Recording/native/StartRecordingDialogContent.tsx +383 -0
- package/react/features/recording/components/Recording/native/StopRecordingDialog.tsx +33 -0
- package/react/features/recording/components/Recording/styles.native.ts +167 -0
- package/react/features/recording/components/Recording/styles.web.ts +16 -0
- package/react/features/recording/components/Recording/web/HighlightButton.tsx +225 -0
- package/react/features/recording/components/Recording/web/RecordButton.ts +60 -0
- package/react/features/recording/components/Recording/web/RecordingConsentDialog.tsx +58 -0
- package/react/features/recording/components/Recording/web/StartRecordingDialog.tsx +137 -0
- package/react/features/recording/components/Recording/web/StartRecordingDialogContent.tsx +486 -0
- package/react/features/recording/components/Recording/web/StopRecordingDialog.tsx +48 -0
- package/react/features/recording/components/native/RecordingExpandedLabel.ts +103 -0
- package/react/features/recording/components/native/RecordingLabel.tsx +51 -0
- package/react/features/recording/components/native/styles.ts +18 -0
- package/react/features/recording/components/web/RecordingLabel.tsx +85 -0
- package/react/features/recording/components/web/RecordingLimitNotificationDescription.tsx +76 -0
- package/react/features/recording/constants.ts +64 -0
- package/react/features/recording/functions.ts +485 -0
- package/react/features/recording/hooks.web.ts +61 -0
- package/react/features/recording/logger.ts +3 -0
- package/react/features/recording/middleware.ts +432 -0
- package/react/features/recording/reducer.ts +156 -0
- package/react/features/recording/sounds.ts +27 -0
- package/react/features/rejoin/middleware.ts +27 -0
- package/react/features/remote-control/actionTypes.ts +68 -0
- package/react/features/remote-control/actions.ts +770 -0
- package/react/features/remote-control/components/RemoteControlAuthorizationDialog.tsx +170 -0
- package/react/features/remote-control/constants.ts +86 -0
- package/react/features/remote-control/functions.ts +131 -0
- package/react/features/remote-control/keycodes.ts +176 -0
- package/react/features/remote-control/logger.ts +3 -0
- package/react/features/remote-control/middleware.ts +92 -0
- package/react/features/remote-control/reducer.ts +88 -0
- package/react/features/remote-control/subscriber.ts +53 -0
- package/react/features/room-lock/actions.ts +112 -0
- package/react/features/room-lock/components/PasswordRequiredPrompt.native.tsx +165 -0
- package/react/features/room-lock/components/PasswordRequiredPrompt.web.tsx +159 -0
- package/react/features/room-lock/constants.ts +15 -0
- package/react/features/room-lock/logger.ts +3 -0
- package/react/features/room-lock/middleware.ts +149 -0
- package/react/features/rtcstats/RTCStats.ts +126 -0
- package/react/features/rtcstats/functions.ts +29 -0
- package/react/features/rtcstats/logger.ts +3 -0
- package/react/features/rtcstats/middleware.ts +92 -0
- package/react/features/rtcstats/types.ts +12 -0
- package/react/features/salesforce/actions.ts +36 -0
- package/react/features/salesforce/components/index.native.ts +2 -0
- package/react/features/salesforce/components/index.web.ts +1 -0
- package/react/features/salesforce/components/native/RecordItem.tsx +83 -0
- package/react/features/salesforce/components/native/SalesforceLinkDialog.tsx +186 -0
- package/react/features/salesforce/components/native/styles.ts +148 -0
- package/react/features/salesforce/components/web/RecordItem.tsx +107 -0
- package/react/features/salesforce/components/web/SalesforceLinkDialog.tsx +284 -0
- package/react/features/salesforce/constants.ts +41 -0
- package/react/features/salesforce/functions.ts +114 -0
- package/react/features/salesforce/useSalesforceLinkDialog.ts +156 -0
- package/react/features/screen-share/actionTypes.ts +27 -0
- package/react/features/screen-share/actions.any.ts +19 -0
- package/react/features/screen-share/actions.web.ts +104 -0
- package/react/features/screen-share/components/web/ShareAudioButton.ts +71 -0
- package/react/features/screen-share/components/web/ShareAudioDialog.tsx +117 -0
- package/react/features/screen-share/components/web/ShareScreenWarningDialog.tsx +95 -0
- package/react/features/screen-share/functions.ts +58 -0
- package/react/features/screen-share/logger.ts +3 -0
- package/react/features/screen-share/middleware.ts +72 -0
- package/react/features/screen-share/reducer.ts +44 -0
- package/react/features/screenshot-capture/CameraCaptureDialog.tsx +154 -0
- package/react/features/screenshot-capture/ScreenshotCaptureSummary.tsx +214 -0
- package/react/features/screenshot-capture/actionTypes.ts +29 -0
- package/react/features/screenshot-capture/actions.ts +86 -0
- package/react/features/screenshot-capture/constants.ts +51 -0
- package/react/features/screenshot-capture/functions.tsx +55 -0
- package/react/features/screenshot-capture/logger.ts +3 -0
- package/react/features/screenshot-capture/processScreenshot.js +10 -0
- package/react/features/screenshot-capture/reducer.ts +30 -0
- package/react/features/screenshot-capture/worker.ts +132 -0
- package/react/features/security/actions.ts +15 -0
- package/react/features/security/components/security-dialog/AbstractSecurityDialogButton.ts +92 -0
- package/react/features/security/components/security-dialog/index.native.ts +2 -0
- package/react/features/security/components/security-dialog/index.web.ts +1 -0
- package/react/features/security/components/security-dialog/native/SecurityDialog.tsx +533 -0
- package/react/features/security/components/security-dialog/native/SecurityDialogButton.ts +27 -0
- package/react/features/security/components/security-dialog/native/styles.ts +95 -0
- package/react/features/security/components/security-dialog/web/PasswordForm.tsx +115 -0
- package/react/features/security/components/security-dialog/web/PasswordSection.tsx +189 -0
- package/react/features/security/components/security-dialog/web/SecurityDialog.tsx +65 -0
- package/react/features/security/components/security-dialog/web/SecurityDialogButton.ts +28 -0
- package/react/features/security/functions.ts +28 -0
- package/react/features/security/hooks.web.ts +45 -0
- package/react/features/settings/actionTypes.ts +19 -0
- package/react/features/settings/actions.native.ts +38 -0
- package/react/features/settings/actions.web.ts +375 -0
- package/react/features/settings/components/native/AdvancedSection.tsx +114 -0
- package/react/features/settings/components/native/ConferenceSection.tsx +101 -0
- package/react/features/settings/components/native/FormRow.tsx +146 -0
- package/react/features/settings/components/native/FormSection.tsx +42 -0
- package/react/features/settings/components/native/GeneralSection.tsx +61 -0
- package/react/features/settings/components/native/LanguageSelectView.tsx +79 -0
- package/react/features/settings/components/native/LinksSection.tsx +57 -0
- package/react/features/settings/components/native/LogoutDialog.tsx +21 -0
- package/react/features/settings/components/native/ModeratorSection.tsx +144 -0
- package/react/features/settings/components/native/NotificationsSection.tsx +139 -0
- package/react/features/settings/components/native/ProfileView.tsx +165 -0
- package/react/features/settings/components/native/SettingsView.tsx +101 -0
- package/react/features/settings/components/native/constants.ts +1 -0
- package/react/features/settings/components/native/styles.ts +244 -0
- package/react/features/settings/components/web/CalendarTab.tsx +307 -0
- package/react/features/settings/components/web/LogoutDialog.tsx +38 -0
- package/react/features/settings/components/web/ModeratorTab.tsx +281 -0
- package/react/features/settings/components/web/MoreTab.tsx +283 -0
- package/react/features/settings/components/web/NotificationsTab.tsx +273 -0
- package/react/features/settings/components/web/ProfileTab.tsx +251 -0
- package/react/features/settings/components/web/SettingsButton.ts +50 -0
- package/react/features/settings/components/web/SettingsDialog.tsx +331 -0
- package/react/features/settings/components/web/ShortcutsTab.tsx +178 -0
- package/react/features/settings/components/web/VirtualBackgroundTab.tsx +102 -0
- package/react/features/settings/components/web/audio/AudioSettingsContent.tsx +357 -0
- package/react/features/settings/components/web/audio/AudioSettingsPopup.tsx +164 -0
- package/react/features/settings/components/web/audio/Meter.tsx +45 -0
- package/react/features/settings/components/web/audio/MicrophoneEntry.tsx +223 -0
- package/react/features/settings/components/web/audio/SpeakerEntry.tsx +176 -0
- package/react/features/settings/components/web/video/VideoSettingsContent.tsx +358 -0
- package/react/features/settings/components/web/video/VideoSettingsPopup.tsx +128 -0
- package/react/features/settings/constants.ts +21 -0
- package/react/features/settings/functions.any.ts +282 -0
- package/react/features/settings/functions.native.ts +38 -0
- package/react/features/settings/functions.web.ts +175 -0
- package/react/features/settings/logger.ts +3 -0
- package/react/features/settings/middleware.web.ts +33 -0
- package/react/features/settings/reducer.ts +43 -0
- package/react/features/share-room/actionTypes.ts +33 -0
- package/react/features/share-room/actions.ts +69 -0
- package/react/features/share-room/functions.ts +18 -0
- package/react/features/share-room/logger.ts +3 -0
- package/react/features/share-room/middleware.ts +71 -0
- package/react/features/share-room/reducer.ts +23 -0
- package/react/features/shared-video/actionTypes.ts +38 -0
- package/react/features/shared-video/actions.ts +203 -0
- package/react/features/shared-video/components/AbstractSharedVideoDialog.tsx +68 -0
- package/react/features/shared-video/components/index.native.ts +4 -0
- package/react/features/shared-video/components/index.web.ts +3 -0
- package/react/features/shared-video/components/native/AbstractVideoManager.ts +266 -0
- package/react/features/shared-video/components/native/ShareVideoConfirmDialog.tsx +38 -0
- package/react/features/shared-video/components/native/SharedVideo.tsx +167 -0
- package/react/features/shared-video/components/native/SharedVideoButton.ts +113 -0
- package/react/features/shared-video/components/native/SharedVideoDialog.tsx +86 -0
- package/react/features/shared-video/components/native/VideoManager.tsx +196 -0
- package/react/features/shared-video/components/native/YoutubeVideoManager.tsx +203 -0
- package/react/features/shared-video/components/native/styles.ts +11 -0
- package/react/features/shared-video/components/web/AbstractVideoManager.ts +490 -0
- package/react/features/shared-video/components/web/ShareVideoConfirmDialog.tsx +39 -0
- package/react/features/shared-video/components/web/SharedVideo.tsx +185 -0
- package/react/features/shared-video/components/web/SharedVideoButton.ts +97 -0
- package/react/features/shared-video/components/web/SharedVideoDialog.tsx +118 -0
- package/react/features/shared-video/components/web/VideoManager.tsx +184 -0
- package/react/features/shared-video/components/web/YoutubeVideoManager.tsx +230 -0
- package/react/features/shared-video/constants.ts +50 -0
- package/react/features/shared-video/functions.ts +166 -0
- package/react/features/shared-video/hooks.ts +24 -0
- package/react/features/shared-video/logger.ts +3 -0
- package/react/features/shared-video/middleware.ts +290 -0
- package/react/features/shared-video/reducer.ts +66 -0
- package/react/features/speaker-stats/actionTypes.ts +80 -0
- package/react/features/speaker-stats/actions.any.ts +231 -0
- package/react/features/speaker-stats/actions.native.ts +1 -0
- package/react/features/speaker-stats/actions.web.ts +1 -0
- package/react/features/speaker-stats/components/AbstractSpeakerStatsButton.tsx +14 -0
- package/react/features/speaker-stats/components/AbstractSpeakerStatsList.ts +114 -0
- package/react/features/speaker-stats/components/native/SpeakerStats.tsx +32 -0
- package/react/features/speaker-stats/components/native/SpeakerStatsButton.ts +50 -0
- package/react/features/speaker-stats/components/native/SpeakerStatsItem.tsx +76 -0
- package/react/features/speaker-stats/components/native/SpeakerStatsList.tsx +23 -0
- package/react/features/speaker-stats/components/native/SpeakerStatsSearch.tsx +48 -0
- package/react/features/speaker-stats/components/native/TimeElapsed.tsx +50 -0
- package/react/features/speaker-stats/components/native/styles.ts +55 -0
- package/react/features/speaker-stats/components/timeFunctions.ts +88 -0
- package/react/features/speaker-stats/components/web/FaceExpressionsSwitch.tsx +61 -0
- package/react/features/speaker-stats/components/web/SpeakerStats.tsx +283 -0
- package/react/features/speaker-stats/components/web/SpeakerStatsButton.tsx +45 -0
- package/react/features/speaker-stats/components/web/SpeakerStatsItem.tsx +116 -0
- package/react/features/speaker-stats/components/web/SpeakerStatsLabels.tsx +56 -0
- package/react/features/speaker-stats/components/web/SpeakerStatsList.tsx +65 -0
- package/react/features/speaker-stats/components/web/SpeakerStatsSearch.tsx +128 -0
- package/react/features/speaker-stats/components/web/TimeElapsed.tsx +36 -0
- package/react/features/speaker-stats/components/web/Timeline.tsx +207 -0
- package/react/features/speaker-stats/components/web/TimelineAxis.tsx +187 -0
- package/react/features/speaker-stats/constants.ts +28 -0
- package/react/features/speaker-stats/functions.ts +274 -0
- package/react/features/speaker-stats/hooks.web.ts +23 -0
- package/react/features/speaker-stats/middleware.ts +101 -0
- package/react/features/speaker-stats/reducer.ts +188 -0
- package/react/features/stream-effects/audio-mixer/AudioMixerEffect.ts +113 -0
- package/react/features/stream-effects/noise-suppression/NoiseSuppressionEffect.ts +277 -0
- package/react/features/stream-effects/noise-suppression/NoiseSuppressorWorklet.ts +177 -0
- package/react/features/stream-effects/noise-suppression/logger.ts +3 -0
- package/react/features/stream-effects/rnnoise/RnnoiseProcessor.ts +186 -0
- package/react/features/stream-effects/rnnoise/index.ts +24 -0
- package/react/features/stream-effects/virtual-background/JitsiStreamBackgroundEffect.ts +269 -0
- package/react/features/stream-effects/virtual-background/TimerWorker.ts +67 -0
- package/react/features/stream-effects/virtual-background/index.ts +106 -0
- package/react/features/stream-effects/virtual-background/vendor/README.md +24 -0
- package/react/features/stream-effects/virtual-background/vendor/models/selfie_segmentation_landscape.tflite +0 -0
- package/react/features/stream-effects/virtual-background/vendor/tflite/tflite-simd.js +17 -0
- package/react/features/stream-effects/virtual-background/vendor/tflite/tflite-simd.wasm +0 -0
- package/react/features/stream-effects/virtual-background/vendor/tflite/tflite.js +17 -0
- package/react/features/stream-effects/virtual-background/vendor/tflite/tflite.wasm +0 -0
- package/react/features/subtitles/actionTypes.ts +72 -0
- package/react/features/subtitles/actions.any.ts +139 -0
- package/react/features/subtitles/actions.native.ts +1 -0
- package/react/features/subtitles/actions.web.ts +17 -0
- package/react/features/subtitles/components/AbstractCaptions.tsx +143 -0
- package/react/features/subtitles/components/AbstractClosedCaptionButton.tsx +128 -0
- package/react/features/subtitles/components/AbstractLanguageSelectorDialog.tsx +67 -0
- package/react/features/subtitles/components/native/Captions.tsx +65 -0
- package/react/features/subtitles/components/native/ClosedCaptionButton.tsx +59 -0
- package/react/features/subtitles/components/native/LanguageList.tsx +43 -0
- package/react/features/subtitles/components/native/LanguageListItem.tsx +67 -0
- package/react/features/subtitles/components/native/LanguageSelectorDialog.tsx +38 -0
- package/react/features/subtitles/components/native/styles.ts +63 -0
- package/react/features/subtitles/components/web/Captions.tsx +169 -0
- package/react/features/subtitles/components/web/ClosedCaptionButton.tsx +92 -0
- package/react/features/subtitles/components/web/LanguageList.tsx +52 -0
- package/react/features/subtitles/components/web/LanguageListItem.tsx +77 -0
- package/react/features/subtitles/components/web/LanguageSelector.tsx +103 -0
- package/react/features/subtitles/components/web/LanguageSelectorDialog.tsx +78 -0
- package/react/features/subtitles/constants.ts +4 -0
- package/react/features/subtitles/functions.any.ts +71 -0
- package/react/features/subtitles/functions.native.ts +30 -0
- package/react/features/subtitles/functions.web.ts +35 -0
- package/react/features/subtitles/hooks.web.ts +31 -0
- package/react/features/subtitles/logger.ts +3 -0
- package/react/features/subtitles/middleware.ts +401 -0
- package/react/features/subtitles/reducer.ts +180 -0
- package/react/features/subtitles/types.ts +23 -0
- package/react/features/talk-while-muted/actionTypes.ts +12 -0
- package/react/features/talk-while-muted/actions.ts +19 -0
- package/react/features/talk-while-muted/constants.ts +6 -0
- package/react/features/talk-while-muted/middleware.ts +75 -0
- package/react/features/talk-while-muted/reducer.ts +21 -0
- package/react/features/talk-while-muted/sounds.ts +6 -0
- package/react/features/toolbox/actionTypes.ts +168 -0
- package/react/features/toolbox/actions.any.ts +189 -0
- package/react/features/toolbox/actions.native.ts +45 -0
- package/react/features/toolbox/actions.web.ts +280 -0
- package/react/features/toolbox/components/AbstractAudioMuteButton.tsx +95 -0
- package/react/features/toolbox/components/AbstractVideoMuteButton.tsx +94 -0
- package/react/features/toolbox/components/DownloadButton.ts +59 -0
- package/react/features/toolbox/components/HangupButton.ts +50 -0
- package/react/features/toolbox/components/HelpButton.ts +62 -0
- package/react/features/toolbox/components/index.native.ts +1 -0
- package/react/features/toolbox/components/index.web.ts +1 -0
- package/react/features/toolbox/components/native/AudioMuteButton.tsx +6 -0
- package/react/features/toolbox/components/native/AudioOnlyButton.ts +96 -0
- package/react/features/toolbox/components/native/CustomOptionButton.tsx +75 -0
- package/react/features/toolbox/components/native/HangupContainerButtons.tsx +21 -0
- package/react/features/toolbox/components/native/HangupMenu.tsx +73 -0
- package/react/features/toolbox/components/native/HangupMenuButton.tsx +32 -0
- package/react/features/toolbox/components/native/LinkToSalesforceButton.ts +48 -0
- package/react/features/toolbox/components/native/OpenCarmodeButton.tsx +49 -0
- package/react/features/toolbox/components/native/OverflowMenu.tsx +316 -0
- package/react/features/toolbox/components/native/OverflowMenuButton.ts +50 -0
- package/react/features/toolbox/components/native/RaiseHandButton.ts +99 -0
- package/react/features/toolbox/components/native/ScreenSharingAndroidButton.ts +91 -0
- package/react/features/toolbox/components/native/ScreenSharingButton.tsx +36 -0
- package/react/features/toolbox/components/native/ScreenSharingIosButton.tsx +148 -0
- package/react/features/toolbox/components/native/ToggleCameraButton.ts +79 -0
- package/react/features/toolbox/components/native/ToggleSelfViewButton.ts +74 -0
- package/react/features/toolbox/components/native/Toolbox.tsx +142 -0
- package/react/features/toolbox/components/native/VideoMuteButton.tsx +7 -0
- package/react/features/toolbox/components/native/styles.ts +216 -0
- package/react/features/toolbox/components/web/AudioMuteButton.tsx +205 -0
- package/react/features/toolbox/components/web/AudioSettingsButton.tsx +180 -0
- package/react/features/toolbox/components/web/CustomOptionButton.tsx +40 -0
- package/react/features/toolbox/components/web/DialogPortal.ts +126 -0
- package/react/features/toolbox/components/web/Drawer.tsx +172 -0
- package/react/features/toolbox/components/web/EndConferenceButton.tsx +55 -0
- package/react/features/toolbox/components/web/FullscreenButton.ts +77 -0
- package/react/features/toolbox/components/web/HangupContextMenuItem.tsx +73 -0
- package/react/features/toolbox/components/web/HangupMenuButton.tsx +134 -0
- package/react/features/toolbox/components/web/HangupToggleButton.tsx +57 -0
- package/react/features/toolbox/components/web/JitsiPortal.tsx +58 -0
- package/react/features/toolbox/components/web/LeaveConferenceButton.tsx +54 -0
- package/react/features/toolbox/components/web/LinkToSalesforceButton.ts +48 -0
- package/react/features/toolbox/components/web/OverflowMenuButton.tsx +262 -0
- package/react/features/toolbox/components/web/OverflowToggleButton.ts +59 -0
- package/react/features/toolbox/components/web/ProfileButton.ts +116 -0
- package/react/features/toolbox/components/web/ProfileButtonAvatar.tsx +62 -0
- package/react/features/toolbox/components/web/Separator.tsx +3 -0
- package/react/features/toolbox/components/web/ShareDesktopButton.ts +116 -0
- package/react/features/toolbox/components/web/ToggleCameraButton.ts +76 -0
- package/react/features/toolbox/components/web/Toolbox.tsx +353 -0
- package/react/features/toolbox/components/web/VideoMuteButton.tsx +203 -0
- package/react/features/toolbox/components/web/VideoSettingsButton.tsx +197 -0
- package/react/features/toolbox/constants.ts +214 -0
- package/react/features/toolbox/functions.any.ts +95 -0
- package/react/features/toolbox/functions.native.ts +125 -0
- package/react/features/toolbox/functions.web.ts +248 -0
- package/react/features/toolbox/hooks.native.ts +181 -0
- package/react/features/toolbox/hooks.web.ts +642 -0
- package/react/features/toolbox/middleware.native.ts +46 -0
- package/react/features/toolbox/middleware.web.ts +172 -0
- package/react/features/toolbox/reducer.ts +215 -0
- package/react/features/toolbox/subscriber.web.ts +106 -0
- package/react/features/toolbox/types.ts +107 -0
- package/react/features/transcribing/actionTypes.ts +22 -0
- package/react/features/transcribing/actions.ts +40 -0
- package/react/features/transcribing/functions.ts +83 -0
- package/react/features/transcribing/jitsi-bcp47-map.json +52 -0
- package/react/features/transcribing/logger.ts +3 -0
- package/react/features/transcribing/middleware.ts +25 -0
- package/react/features/transcribing/reducer.ts +79 -0
- package/react/features/transcribing/subscriber.ts +87 -0
- package/react/features/transcribing/transcriber-langs.json +90 -0
- package/react/features/unsupported-browser/components/DefaultUnsupportedDesktopBrowser.tsx +31 -0
- package/react/features/unsupported-browser/components/JaasUnsupportedDesktopBrowser.ts +1 -0
- package/react/features/unsupported-browser/components/PageSelector.tsx +19 -0
- package/react/features/unsupported-browser/components/UnsupportedDesktopBrowser.tsx +1 -0
- package/react/features/unsupported-browser/components/browserLinks.ts +35 -0
- package/react/features/video-layout/actionTypes.ts +30 -0
- package/react/features/video-layout/actions.any.ts +60 -0
- package/react/features/video-layout/actions.native.ts +19 -0
- package/react/features/video-layout/actions.web.ts +1 -0
- package/react/features/video-layout/components/TileViewButton.ts +96 -0
- package/react/features/video-layout/constants.ts +29 -0
- package/react/features/video-layout/functions.any.ts +238 -0
- package/react/features/video-layout/functions.native.ts +1 -0
- package/react/features/video-layout/functions.web.ts +86 -0
- package/react/features/video-layout/hooks.ts +26 -0
- package/react/features/video-layout/logger.ts +3 -0
- package/react/features/video-layout/middleware.any.ts +129 -0
- package/react/features/video-layout/middleware.native.ts +34 -0
- package/react/features/video-layout/middleware.web.ts +72 -0
- package/react/features/video-layout/reducer.ts +63 -0
- package/react/features/video-layout/subscriber.ts +35 -0
- package/react/features/video-menu/actions.any.ts +105 -0
- package/react/features/video-menu/actions.native.ts +1 -0
- package/react/features/video-menu/actions.web.ts +17 -0
- package/react/features/video-menu/components/AbstractGrantModeratorButton.ts +59 -0
- package/react/features/video-menu/components/AbstractGrantModeratorDialog.ts +77 -0
- package/react/features/video-menu/components/AbstractKickButton.ts +34 -0
- package/react/features/video-menu/components/AbstractKickRemoteParticipantDialog.ts +57 -0
- package/react/features/video-menu/components/AbstractMuteButton.ts +90 -0
- package/react/features/video-menu/components/AbstractMuteEveryoneDialog.ts +131 -0
- package/react/features/video-menu/components/AbstractMuteEveryoneElseButton.ts +37 -0
- package/react/features/video-menu/components/AbstractMuteEveryoneElsesVideoButton.ts +37 -0
- package/react/features/video-menu/components/AbstractMuteEveryonesDesktopDialog.ts +130 -0
- package/react/features/video-menu/components/AbstractMuteEveryonesVideoDialog.ts +130 -0
- package/react/features/video-menu/components/AbstractMuteRemoteParticipantsDesktopDialog.ts +81 -0
- package/react/features/video-menu/components/AbstractMuteRemoteParticipantsVideoDialog.ts +81 -0
- package/react/features/video-menu/components/AbstractMuteVideoButton.ts +90 -0
- package/react/features/video-menu/components/index.native.ts +13 -0
- package/react/features/video-menu/components/index.web.ts +6 -0
- package/react/features/video-menu/components/native/AskUnmuteButton.ts +100 -0
- package/react/features/video-menu/components/native/ConnectionStatusButton.ts +36 -0
- package/react/features/video-menu/components/native/ConnectionStatusComponent.tsx +476 -0
- package/react/features/video-menu/components/native/DemoteToVisitorButton.ts +52 -0
- package/react/features/video-menu/components/native/DemoteToVisitorDialog.tsx +38 -0
- package/react/features/video-menu/components/native/GrantModeratorButton.ts +8 -0
- package/react/features/video-menu/components/native/GrantModeratorDialog.tsx +31 -0
- package/react/features/video-menu/components/native/KickButton.ts +20 -0
- package/react/features/video-menu/components/native/KickRemoteParticipantDialog.tsx +32 -0
- package/react/features/video-menu/components/native/LocalVideoMenu.tsx +154 -0
- package/react/features/video-menu/components/native/LowerHandButton.tsx +71 -0
- package/react/features/video-menu/components/native/MuteButton.ts +22 -0
- package/react/features/video-menu/components/native/MuteEveryoneDialog.tsx +58 -0
- package/react/features/video-menu/components/native/MuteEveryoneElseButton.ts +20 -0
- package/react/features/video-menu/components/native/MuteEveryonesVideoDialog.tsx +58 -0
- package/react/features/video-menu/components/native/MuteRemoteParticipantsVideoDialog.tsx +32 -0
- package/react/features/video-menu/components/native/MuteVideoButton.ts +22 -0
- package/react/features/video-menu/components/native/PinButton.ts +59 -0
- package/react/features/video-menu/components/native/RemoteVideoMenu.tsx +287 -0
- package/react/features/video-menu/components/native/SendToBreakoutRoom.ts +71 -0
- package/react/features/video-menu/components/native/SharedVideoMenu.tsx +149 -0
- package/react/features/video-menu/components/native/VolumeSlider.tsx +175 -0
- package/react/features/video-menu/components/native/styles.ts +89 -0
- package/react/features/video-menu/components/web/AskToUnmuteButton.tsx +76 -0
- package/react/features/video-menu/components/web/ConnectionStatusButton.tsx +42 -0
- package/react/features/video-menu/components/web/CustomOptionButton.tsx +27 -0
- package/react/features/video-menu/components/web/DemoteToVisitorButton.tsx +63 -0
- package/react/features/video-menu/components/web/DemoteToVisitorDialog.tsx +40 -0
- package/react/features/video-menu/components/web/FakeParticipantContextMenu.tsx +178 -0
- package/react/features/video-menu/components/web/FlipLocalVideoButton.tsx +125 -0
- package/react/features/video-menu/components/web/GrantModeratorButton.tsx +56 -0
- package/react/features/video-menu/components/web/GrantModeratorDialog.tsx +32 -0
- package/react/features/video-menu/components/web/HideSelfViewVideoButton.tsx +124 -0
- package/react/features/video-menu/components/web/KickButton.tsx +46 -0
- package/react/features/video-menu/components/web/KickRemoteParticipantDialog.tsx +32 -0
- package/react/features/video-menu/components/web/LocalVideoMenuTriggerButton.tsx +305 -0
- package/react/features/video-menu/components/web/LowerHandButton.tsx +56 -0
- package/react/features/video-menu/components/web/MuteButton.tsx +65 -0
- package/react/features/video-menu/components/web/MuteDesktopButton.tsx +67 -0
- package/react/features/video-menu/components/web/MuteEveryoneDialog.tsx +55 -0
- package/react/features/video-menu/components/web/MuteEveryoneElseButton.tsx +48 -0
- package/react/features/video-menu/components/web/MuteEveryoneElsesDesktopButton.tsx +48 -0
- package/react/features/video-menu/components/web/MuteEveryoneElsesVideoButton.tsx +48 -0
- package/react/features/video-menu/components/web/MuteEveryonesDesktopDialog.tsx +52 -0
- package/react/features/video-menu/components/web/MuteEveryonesVideoDialog.tsx +52 -0
- package/react/features/video-menu/components/web/MuteRemoteParticipantsDesktopDialog.tsx +40 -0
- package/react/features/video-menu/components/web/MuteRemoteParticipantsVideoDialog.tsx +40 -0
- package/react/features/video-menu/components/web/MuteVideoButton.tsx +66 -0
- package/react/features/video-menu/components/web/ParticipantContextMenu.tsx +388 -0
- package/react/features/video-menu/components/web/PrivateMessageMenuButton.tsx +112 -0
- package/react/features/video-menu/components/web/RemoteControlButton.tsx +148 -0
- package/react/features/video-menu/components/web/RemoteVideoMenuTriggerButton.tsx +273 -0
- package/react/features/video-menu/components/web/SendToRoomButton.tsx +57 -0
- package/react/features/video-menu/components/web/TogglePinToStageButton.tsx +67 -0
- package/react/features/video-menu/components/web/VerifyParticipantButton.tsx +45 -0
- package/react/features/video-menu/components/web/VolumeSlider.tsx +111 -0
- package/react/features/video-menu/constants.ts +41 -0
- package/react/features/video-menu/logger.ts +3 -0
- package/react/features/video-menu/types.ts +18 -0
- package/react/features/video-quality/actionTypes.ts +72 -0
- package/react/features/video-quality/actions.ts +135 -0
- package/react/features/video-quality/components/Slider.web.tsx +168 -0
- package/react/features/video-quality/components/VideoQualityButton.native.ts +0 -0
- package/react/features/video-quality/components/VideoQualityButton.web.ts +58 -0
- package/react/features/video-quality/components/VideoQualityDialog.native.ts +0 -0
- package/react/features/video-quality/components/VideoQualityDialog.web.tsx +30 -0
- package/react/features/video-quality/components/VideoQualityExpandedLabel.native.ts +34 -0
- package/react/features/video-quality/components/VideoQualityExpandedLabel.web.ts +0 -0
- package/react/features/video-quality/components/VideoQualityLabel.native.tsx +75 -0
- package/react/features/video-quality/components/VideoQualityLabel.web.tsx +66 -0
- package/react/features/video-quality/components/VideoQualitySlider.native.ts +0 -0
- package/react/features/video-quality/components/VideoQualitySlider.web.tsx +385 -0
- package/react/features/video-quality/components/styles.ts +20 -0
- package/react/features/video-quality/constants.ts +55 -0
- package/react/features/video-quality/functions.ts +65 -0
- package/react/features/video-quality/logger.ts +3 -0
- package/react/features/video-quality/middleware.ts +45 -0
- package/react/features/video-quality/reducer.ts +130 -0
- package/react/features/video-quality/selector.ts +31 -0
- package/react/features/video-quality/subscriber.ts +517 -0
- package/react/features/videosipgw/actionTypes.ts +23 -0
- package/react/features/videosipgw/actions.ts +20 -0
- package/react/features/videosipgw/logger.ts +3 -0
- package/react/features/videosipgw/middleware.ts +179 -0
- package/react/features/videosipgw/reducer.ts +21 -0
- package/react/features/videosipgw/types.ts +10 -0
- package/react/features/virtual-background/actionTypes.ts +23 -0
- package/react/features/virtual-background/actions.ts +105 -0
- package/react/features/virtual-background/components/UploadImageButton.tsx +152 -0
- package/react/features/virtual-background/components/VideoBackgroundButton.ts +77 -0
- package/react/features/virtual-background/components/VirtualBackgroundPreview.tsx +305 -0
- package/react/features/virtual-background/components/VirtualBackgrounds.tsx +503 -0
- package/react/features/virtual-background/constants.ts +61 -0
- package/react/features/virtual-background/functions.ts +119 -0
- package/react/features/virtual-background/hooks.ts +27 -0
- package/react/features/virtual-background/logger.ts +3 -0
- package/react/features/virtual-background/reducer.ts +54 -0
- package/react/features/visitors/VisitorsListWebsocketClient.ts +175 -0
- package/react/features/visitors/actionTypes.ts +81 -0
- package/react/features/visitors/actions.ts +262 -0
- package/react/features/visitors/components/index.native.ts +1 -0
- package/react/features/visitors/components/index.web.ts +1 -0
- package/react/features/visitors/components/native/JoinMeetingDialog.tsx +40 -0
- package/react/features/visitors/components/native/VisitorsCountLabel.tsx +38 -0
- package/react/features/visitors/components/native/VisitorsQueue.tsx +43 -0
- package/react/features/visitors/components/native/styles.ts +34 -0
- package/react/features/visitors/components/web/JoinMeetingDialog.tsx +72 -0
- package/react/features/visitors/components/web/VisitorsCountLabel.tsx +37 -0
- package/react/features/visitors/components/web/VisitorsQueue.tsx +107 -0
- package/react/features/visitors/functions.ts +153 -0
- package/react/features/visitors/logger.ts +3 -0
- package/react/features/visitors/middleware.ts +479 -0
- package/react/features/visitors/reducer.ts +132 -0
- package/react/features/visitors/types.ts +15 -0
- package/react/features/visitors/websocket-client.ts +169 -0
- package/react/features/web-hid/actionTypes.ts +20 -0
- package/react/features/web-hid/actions.ts +51 -0
- package/react/features/web-hid/functions.ts +121 -0
- package/react/features/web-hid/logger.ts +3 -0
- package/react/features/web-hid/middleware.ts +145 -0
- package/react/features/web-hid/reducer.ts +43 -0
- package/react/features/web-hid/types.ts +44 -0
- package/react/features/web-hid/utils.ts +52 -0
- package/react/features/web-hid/webhid-manager.ts +1018 -0
- package/react/features/welcome/components/AbstractWelcomePage.ts +298 -0
- package/react/features/welcome/components/BlankPage.web.ts +1 -0
- package/react/features/welcome/components/TabIcon.tsx +35 -0
- package/react/features/welcome/components/Tabs.tsx +111 -0
- package/react/features/welcome/components/WelcomePage.native.tsx +417 -0
- package/react/features/welcome/components/WelcomePage.web.tsx +517 -0
- package/react/features/welcome/components/styles.native.ts +231 -0
- package/react/features/welcome/constants.tsx +44 -0
- package/react/features/welcome/functions.ts +33 -0
- package/react/features/whiteboard/actionTypes.ts +25 -0
- package/react/features/whiteboard/actions.any.ts +71 -0
- package/react/features/whiteboard/actions.native.ts +26 -0
- package/react/features/whiteboard/actions.web.ts +48 -0
- package/react/features/whiteboard/components/native/Whiteboard.tsx +247 -0
- package/react/features/whiteboard/components/native/WhiteboardButton.tsx +43 -0
- package/react/features/whiteboard/components/native/WhiteboardErrorDialog.tsx +15 -0
- package/react/features/whiteboard/components/native/WhiteboardLimitDialog.tsx +43 -0
- package/react/features/whiteboard/components/native/styles.ts +37 -0
- package/react/features/whiteboard/components/web/NoWhiteboardError.tsx +25 -0
- package/react/features/whiteboard/components/web/Whiteboard.tsx +165 -0
- package/react/features/whiteboard/components/web/WhiteboardApp.tsx +94 -0
- package/react/features/whiteboard/components/web/WhiteboardButton.tsx +71 -0
- package/react/features/whiteboard/components/web/WhiteboardLimitDialog.tsx +39 -0
- package/react/features/whiteboard/components/web/WhiteboardWrapper.tsx +70 -0
- package/react/features/whiteboard/constants.ts +71 -0
- package/react/features/whiteboard/functions.ts +217 -0
- package/react/features/whiteboard/hooks.ts +23 -0
- package/react/features/whiteboard/logger.ts +3 -0
- package/react/features/whiteboard/middleware.any.ts +94 -0
- package/react/features/whiteboard/middleware.native.ts +84 -0
- package/react/features/whiteboard/middleware.web.ts +162 -0
- package/react/features/whiteboard/reducer.ts +66 -0
- package/react/features/whiteboard/types.ts +13 -0
- package/react/index.native.js +35 -0
- package/react/index.web.js +85 -0
- package/sdk_instructions.js +2 -0
- package/sounds/README.md +2 -0
- package/sounds/asked-unmute.mp3 +0 -0
- package/sounds/asked-unmute.opus +0 -0
- package/sounds/e2eeOff.mp3 +0 -0
- package/sounds/e2eeOff.opus +0 -0
- package/sounds/e2eeOff_fr.mp3 +0 -0
- package/sounds/e2eeOff_fr.opus +0 -0
- package/sounds/e2eeOff_frCA.mp3 +0 -0
- package/sounds/e2eeOff_frCA.opus +0 -0
- package/sounds/e2eeOn.mp3 +0 -0
- package/sounds/e2eeOn.opus +0 -0
- package/sounds/e2eeOn_fr.mp3 +0 -0
- package/sounds/e2eeOn_fr.opus +0 -0
- package/sounds/e2eeOn_frCA.mp3 +0 -0
- package/sounds/e2eeOn_frCA.opus +0 -0
- package/sounds/incomingMessage.mp3 +0 -0
- package/sounds/incomingMessage.opus +0 -0
- package/sounds/incomingMessage.wav +0 -0
- package/sounds/joined.mp3 +0 -0
- package/sounds/joined.opus +0 -0
- package/sounds/joined.wav +0 -0
- package/sounds/knock.mp3 +0 -0
- package/sounds/knock.opus +0 -0
- package/sounds/left.mp3 +0 -0
- package/sounds/left.opus +0 -0
- package/sounds/left.wav +0 -0
- package/sounds/liveStreamingOff.mp3 +0 -0
- package/sounds/liveStreamingOff.opus +0 -0
- package/sounds/liveStreamingOff_fr.mp3 +0 -0
- package/sounds/liveStreamingOff_fr.opus +0 -0
- package/sounds/liveStreamingOff_frCA.mp3 +0 -0
- package/sounds/liveStreamingOff_frCA.opus +0 -0
- package/sounds/liveStreamingOn.mp3 +0 -0
- package/sounds/liveStreamingOn.opus +0 -0
- package/sounds/liveStreamingOn_fr.mp3 +0 -0
- package/sounds/liveStreamingOn_fr.opus +0 -0
- package/sounds/liveStreamingOn_frCA.mp3 +0 -0
- package/sounds/liveStreamingOn_frCA.opus +0 -0
- package/sounds/noAudioSignal.mp3 +0 -0
- package/sounds/noAudioSignal.opus +0 -0
- package/sounds/noisyAudioInput.mp3 +0 -0
- package/sounds/noisyAudioInput.opus +0 -0
- package/sounds/outgoingRinging.mp3 +0 -0
- package/sounds/outgoingRinging.opus +0 -0
- package/sounds/outgoingRinging.wav +0 -0
- package/sounds/outgoingStart.mp3 +0 -0
- package/sounds/outgoingStart.opus +0 -0
- package/sounds/outgoingStart.wav +0 -0
- package/sounds/reactions-applause.mp3 +0 -0
- package/sounds/reactions-applause.opus +0 -0
- package/sounds/reactions-boo.mp3 +0 -0
- package/sounds/reactions-boo.opus +0 -0
- package/sounds/reactions-crickets.mp3 +0 -0
- package/sounds/reactions-crickets.opus +0 -0
- package/sounds/reactions-laughter.mp3 +0 -0
- package/sounds/reactions-laughter.opus +0 -0
- package/sounds/reactions-love.mp3 +0 -0
- package/sounds/reactions-love.opus +0 -0
- package/sounds/reactions-raised-hand.mp3 +0 -0
- package/sounds/reactions-raised-hand.opus +0 -0
- package/sounds/reactions-surprise.mp3 +0 -0
- package/sounds/reactions-surprise.opus +0 -0
- package/sounds/reactions-thumbs-up.mp3 +0 -0
- package/sounds/reactions-thumbs-up.opus +0 -0
- package/sounds/recordingOff.mp3 +0 -0
- package/sounds/recordingOff.opus +0 -0
- package/sounds/recordingOff_fr.mp3 +0 -0
- package/sounds/recordingOff_fr.opus +0 -0
- package/sounds/recordingOff_frCA.mp3 +0 -0
- package/sounds/recordingOff_frCA.opus +0 -0
- package/sounds/recordingOn.mp3 +0 -0
- package/sounds/recordingOn.opus +0 -0
- package/sounds/recordingOn_fr.mp3 +0 -0
- package/sounds/recordingOn_fr.opus +0 -0
- package/sounds/recordingOn_frCA.mp3 +0 -0
- package/sounds/recordingOn_frCA.opus +0 -0
- package/sounds/rejected.mp3 +0 -0
- package/sounds/rejected.opus +0 -0
- package/sounds/rejected.wav +0 -0
- package/sounds/ring.mp3 +0 -0
- package/sounds/ring.opus +0 -0
- package/sounds/ring.wav +0 -0
- package/sounds/talkWhileMuted.mp3 +0 -0
- package/sounds/talkWhileMuted.opus +0 -0
- package/update_dependencies.js +110 -0
- package/update_sdk_dependencies.js +59 -0
|
@@ -0,0 +1,1042 @@
|
|
|
1
|
+
// !$*UTF8*$!
|
|
2
|
+
{
|
|
3
|
+
archiveVersion = 1;
|
|
4
|
+
classes = {
|
|
5
|
+
};
|
|
6
|
+
objectVersion = 54;
|
|
7
|
+
objects = {
|
|
8
|
+
|
|
9
|
+
/* Begin PBXBuildFile section */
|
|
10
|
+
0B412F181EDEC65D00B1A0A6 /* JitsiMeetView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B412F161EDEC65D00B1A0A6 /* JitsiMeetView.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
11
|
+
0B412F191EDEC65D00B1A0A6 /* JitsiMeetView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B412F171EDEC65D00B1A0A6 /* JitsiMeetView.m */; };
|
|
12
|
+
0B412F221EDEF6EA00B1A0A6 /* JitsiMeetViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B412F1B1EDEC80100B1A0A6 /* JitsiMeetViewDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
13
|
+
0B93EF7E1EC9DDCD0030D24D /* RCTBridgeWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B93EF7C1EC9DDCD0030D24D /* RCTBridgeWrapper.h */; };
|
|
14
|
+
0B93EF7F1EC9DDCD0030D24D /* RCTBridgeWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B93EF7D1EC9DDCD0030D24D /* RCTBridgeWrapper.m */; };
|
|
15
|
+
0BA13D311EE83FF8007BEF7F /* ExternalAPI.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BA13D301EE83FF8007BEF7F /* ExternalAPI.m */; };
|
|
16
|
+
0BB9AD771F5EC6CE001C08DB /* CallKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0BB9AD761F5EC6CE001C08DB /* CallKit.framework */; settings = {ATTRIBUTES = (Weak, ); }; };
|
|
17
|
+
0BB9AD791F5EC6D7001C08DB /* Intents.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0BB9AD781F5EC6D7001C08DB /* Intents.framework */; settings = {ATTRIBUTES = (Weak, ); }; };
|
|
18
|
+
0BB9AD7B1F5EC8F4001C08DB /* CallKit.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BB9AD7A1F5EC8F4001C08DB /* CallKit.m */; };
|
|
19
|
+
0BB9AD7D1F60356D001C08DB /* AppInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BB9AD7C1F60356D001C08DB /* AppInfo.m */; };
|
|
20
|
+
0BC4B8691F8C03A700CE8B21 /* CallKitIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 0BC4B8681F8C01E100CE8B21 /* CallKitIcon.png */; };
|
|
21
|
+
0BCA495F1EC4B6C600B793EE /* AudioMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BCA495C1EC4B6C600B793EE /* AudioMode.m */; };
|
|
22
|
+
0BCA49601EC4B6C600B793EE /* POSIX.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BCA495D1EC4B6C600B793EE /* POSIX.m */; };
|
|
23
|
+
0BCA49611EC4B6C600B793EE /* Proximity.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BCA495E1EC4B6C600B793EE /* Proximity.m */; };
|
|
24
|
+
0BD906EA1EC0C00300C8C18E /* JitsiMeet.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BD906E81EC0C00300C8C18E /* JitsiMeet.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
25
|
+
3453F4A32680898C4A40E821 /* libPods-JitsiMeetSDK.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 927ED7DF018DE5E12C4C3404 /* libPods-JitsiMeetSDK.a */; };
|
|
26
|
+
4E0EF63028CA2FB3005D1B03 /* JMCallKitEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E0EF62E28CA2FB3005D1B03 /* JMCallKitEmitter.h */; };
|
|
27
|
+
4E0EF63128CA2FB3005D1B03 /* JMCallKitEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E0EF62E28CA2FB3005D1B03 /* JMCallKitEmitter.h */; };
|
|
28
|
+
4E0EF63228CA2FB3005D1B03 /* JMCallKitEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E0EF62F28CA2FB3005D1B03 /* JMCallKitEmitter.m */; };
|
|
29
|
+
4E0EF63328CA2FB3005D1B03 /* JMCallKitEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E0EF62F28CA2FB3005D1B03 /* JMCallKitEmitter.m */; };
|
|
30
|
+
4E0EF63528CA317E005D1B03 /* JMCallKitListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E0EF63428CA317E005D1B03 /* JMCallKitListener.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
31
|
+
4E0EF63628CA317E005D1B03 /* JMCallKitListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E0EF63428CA317E005D1B03 /* JMCallKitListener.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
32
|
+
4E0EF63928CA4069005D1B03 /* JMCallKitProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E0EF63728CA4069005D1B03 /* JMCallKitProxy.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
33
|
+
4E0EF63A28CA4069005D1B03 /* JMCallKitProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E0EF63728CA4069005D1B03 /* JMCallKitProxy.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
34
|
+
4E0EF63B28CA4069005D1B03 /* JMCallKitProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E0EF63828CA4069005D1B03 /* JMCallKitProxy.m */; };
|
|
35
|
+
4E0EF63C28CA4069005D1B03 /* JMCallKitProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E0EF63828CA4069005D1B03 /* JMCallKitProxy.m */; };
|
|
36
|
+
4E51B76425E5345E0038575A /* ScheenshareEventEmiter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E51B76225E5345E0038575A /* ScheenshareEventEmiter.h */; };
|
|
37
|
+
4E51B76525E5345E0038575A /* ScheenshareEventEmiter.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E51B76325E5345E0038575A /* ScheenshareEventEmiter.m */; };
|
|
38
|
+
4E812F3328F9A4290087ACC9 /* JitsiMeetView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E812F3228F9A4290087ACC9 /* JitsiMeetView+Private.h */; };
|
|
39
|
+
4E812F3428F9A4290087ACC9 /* JitsiMeetView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E812F3228F9A4290087ACC9 /* JitsiMeetView+Private.h */; };
|
|
40
|
+
4E812F3928F9A4ED0087ACC9 /* JitsiMeetView+Private.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E812F3628F9A4ED0087ACC9 /* JitsiMeetView+Private.m */; };
|
|
41
|
+
4E812F3A28F9A4ED0087ACC9 /* JitsiMeetView+Private.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E812F3628F9A4ED0087ACC9 /* JitsiMeetView+Private.m */; };
|
|
42
|
+
4ED4FFF32721B9B90074E620 /* JitsiAudioSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ED4FFF12721B9B90074E620 /* JitsiAudioSession.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
43
|
+
4ED4FFF42721B9B90074E620 /* JitsiAudioSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ED4FFF22721B9B90074E620 /* JitsiAudioSession.m */; };
|
|
44
|
+
6F08DF7D4458EE3CF3F36F6D /* BuildFile in Frameworks */ = {isa = PBXBuildFile; };
|
|
45
|
+
9A8EE79C77C17743BB66E8BD /* libPods-JitsiMeetSDKLite.a in Frameworks */ = {isa = PBXBuildFile; fileRef = B46497DE9A95BDF5E312AF48 /* libPods-JitsiMeetSDKLite.a */; };
|
|
46
|
+
A4A934E9212F3ADB001E9388 /* Dropbox.m in Sources */ = {isa = PBXBuildFile; fileRef = A4A934E8212F3ADB001E9388 /* Dropbox.m */; };
|
|
47
|
+
C6245F5D2053091D0040BE68 /* image-resize@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C6245F5B2053091D0040BE68 /* image-resize@2x.png */; };
|
|
48
|
+
C6245F5E2053091D0040BE68 /* image-resize@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = C6245F5C2053091D0040BE68 /* image-resize@3x.png */; };
|
|
49
|
+
C6A34261204EF76800E062DD /* DragGestureController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C6A3425E204EF76800E062DD /* DragGestureController.swift */; };
|
|
50
|
+
C6CC49AF207412CF000DFA42 /* PiPViewCoordinator.swift in Sources */ = {isa = PBXBuildFile; fileRef = C6CC49AE207412CF000DFA42 /* PiPViewCoordinator.swift */; };
|
|
51
|
+
C81E9AB925AC5AD800B134D9 /* ExternalAPI.h in Headers */ = {isa = PBXBuildFile; fileRef = C81E9AB825AC5AD800B134D9 /* ExternalAPI.h */; };
|
|
52
|
+
C8AFD27F2462C613000293D2 /* InfoPlistUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = C8AFD27D2462C613000293D2 /* InfoPlistUtil.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
53
|
+
C8AFD2802462C613000293D2 /* InfoPlistUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = C8AFD27E2462C613000293D2 /* InfoPlistUtil.m */; };
|
|
54
|
+
DE65AACA2317FFCD00290BEC /* LogUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = DE65AAC92317FFCD00290BEC /* LogUtils.h */; };
|
|
55
|
+
DE65AACC2318028300290BEC /* JitsiMeetBaseLogHandler+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = DE65AACB2318028300290BEC /* JitsiMeetBaseLogHandler+Private.h */; };
|
|
56
|
+
DE762DB422AFDE76000DEBD6 /* JitsiMeetUserInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = DE762DB322AFDE76000DEBD6 /* JitsiMeetUserInfo.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
57
|
+
DE762DB622AFDE8D000DEBD6 /* JitsiMeetUserInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = DE762DB522AFDE8D000DEBD6 /* JitsiMeetUserInfo.m */; };
|
|
58
|
+
DE81A2D42316AC4D00AE1940 /* JitsiMeetLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = DE81A2D22316AC4D00AE1940 /* JitsiMeetLogger.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
59
|
+
DE81A2D52316AC4D00AE1940 /* JitsiMeetLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = DE81A2D32316AC4D00AE1940 /* JitsiMeetLogger.m */; };
|
|
60
|
+
DE81A2D92316AC7600AE1940 /* LogBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = DE81A2D72316AC7600AE1940 /* LogBridge.m */; };
|
|
61
|
+
DE81A2DE2317ED5400AE1940 /* JitsiMeetBaseLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = DE81A2DC2317ED5400AE1940 /* JitsiMeetBaseLogHandler.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
62
|
+
DE81A2DF2317ED5400AE1940 /* JitsiMeetBaseLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = DE81A2DD2317ED5400AE1940 /* JitsiMeetBaseLogHandler.m */; };
|
|
63
|
+
DE9A0130289A9A9A00E41CBB /* JitsiMeetUserInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = DE762DB322AFDE76000DEBD6 /* JitsiMeetUserInfo.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
64
|
+
DE9A0131289A9A9A00E41CBB /* JitsiMeetView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B412F161EDEC65D00B1A0A6 /* JitsiMeetView.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
65
|
+
DE9A0132289A9A9A00E41CBB /* RCTBridgeWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B93EF7C1EC9DDCD0030D24D /* RCTBridgeWrapper.h */; };
|
|
66
|
+
DE9A0133289A9A9A00E41CBB /* JitsiMeetBaseLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = DE81A2DC2317ED5400AE1940 /* JitsiMeetBaseLogHandler.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
67
|
+
DE9A0134289A9A9A00E41CBB /* JitsiMeetSDK.h in Headers */ = {isa = PBXBuildFile; fileRef = DEA9F283258A5D9900D4CD74 /* JitsiMeetSDK.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
68
|
+
DE9A0135289A9A9A00E41CBB /* ScheenshareEventEmiter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E51B76225E5345E0038575A /* ScheenshareEventEmiter.h */; };
|
|
69
|
+
DE9A0136289A9A9A00E41CBB /* JitsiMeetBaseLogHandler+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = DE65AACB2318028300290BEC /* JitsiMeetBaseLogHandler+Private.h */; };
|
|
70
|
+
DE9A0138289A9A9A00E41CBB /* JitsiMeetViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B412F1B1EDEC80100B1A0A6 /* JitsiMeetViewDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
71
|
+
DE9A0139289A9A9A00E41CBB /* JitsiAudioSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ED4FFF12721B9B90074E620 /* JitsiAudioSession.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
72
|
+
DE9A013B289A9A9A00E41CBB /* JitsiMeet.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BD906E81EC0C00300C8C18E /* JitsiMeet.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
73
|
+
DE9A013C289A9A9A00E41CBB /* JitsiMeetLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = DE81A2D22316AC4D00AE1940 /* JitsiMeetLogger.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
74
|
+
DE9A013D289A9A9A00E41CBB /* LogUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = DE65AAC92317FFCD00290BEC /* LogUtils.h */; };
|
|
75
|
+
DE9A013F289A9A9A00E41CBB /* JitsiMeetConferenceOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = DEAD3224220C497000E93636 /* JitsiMeetConferenceOptions.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
76
|
+
DE9A0140289A9A9A00E41CBB /* ExternalAPI.h in Headers */ = {isa = PBXBuildFile; fileRef = C81E9AB825AC5AD800B134D9 /* ExternalAPI.h */; };
|
|
77
|
+
DE9A0141289A9A9A00E41CBB /* InfoPlistUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = C8AFD27D2462C613000293D2 /* InfoPlistUtil.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
78
|
+
DE9A0143289A9A9A00E41CBB /* CallKit.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BB9AD7A1F5EC8F4001C08DB /* CallKit.m */; };
|
|
79
|
+
DE9A0144289A9A9A00E41CBB /* JitsiMeetBaseLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = DE81A2DD2317ED5400AE1940 /* JitsiMeetBaseLogHandler.m */; };
|
|
80
|
+
DE9A0146289A9A9A00E41CBB /* JitsiAudioSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ED4FFF22721B9B90074E620 /* JitsiAudioSession.m */; };
|
|
81
|
+
DE9A0147289A9A9A00E41CBB /* AppInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BB9AD7C1F60356D001C08DB /* AppInfo.m */; };
|
|
82
|
+
DE9A0148289A9A9A00E41CBB /* LogBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = DE81A2D72316AC7600AE1940 /* LogBridge.m */; };
|
|
83
|
+
DE9A0149289A9A9A00E41CBB /* RNRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = DEAFA778229EAD520033A7FA /* RNRootView.m */; };
|
|
84
|
+
DE9A014A289A9A9A00E41CBB /* JitsiMeetUserInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = DE762DB522AFDE8D000DEBD6 /* JitsiMeetUserInfo.m */; };
|
|
85
|
+
DE9A014B289A9A9A00E41CBB /* JitsiMeetConferenceOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = DEAD3225220C497000E93636 /* JitsiMeetConferenceOptions.m */; };
|
|
86
|
+
DE9A014C289A9A9A00E41CBB /* RCTBridgeWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B93EF7D1EC9DDCD0030D24D /* RCTBridgeWrapper.m */; };
|
|
87
|
+
DE9A014D289A9A9A00E41CBB /* ExternalAPI.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BA13D301EE83FF8007BEF7F /* ExternalAPI.m */; };
|
|
88
|
+
DE9A014E289A9A9A00E41CBB /* POSIX.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BCA495D1EC4B6C600B793EE /* POSIX.m */; };
|
|
89
|
+
DE9A014F289A9A9A00E41CBB /* InfoPlistUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = C8AFD27E2462C613000293D2 /* InfoPlistUtil.m */; };
|
|
90
|
+
DE9A0150289A9A9A00E41CBB /* PiPViewCoordinator.swift in Sources */ = {isa = PBXBuildFile; fileRef = C6CC49AE207412CF000DFA42 /* PiPViewCoordinator.swift */; };
|
|
91
|
+
DE9A0151289A9A9A00E41CBB /* LocaleDetector.m in Sources */ = {isa = PBXBuildFile; fileRef = DEFC743D21B178FA00E4DD96 /* LocaleDetector.m */; };
|
|
92
|
+
DE9A0152289A9A9A00E41CBB /* AudioMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BCA495C1EC4B6C600B793EE /* AudioMode.m */; };
|
|
93
|
+
DE9A0153289A9A9A00E41CBB /* Proximity.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BCA495E1EC4B6C600B793EE /* Proximity.m */; };
|
|
94
|
+
DE9A0155289A9A9A00E41CBB /* ReactUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = DEFE535521FB2E8300011A3A /* ReactUtils.m */; };
|
|
95
|
+
DE9A0157289A9A9A00E41CBB /* DragGestureController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C6A3425E204EF76800E062DD /* DragGestureController.swift */; };
|
|
96
|
+
DE9A0158289A9A9A00E41CBB /* ScheenshareEventEmiter.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E51B76325E5345E0038575A /* ScheenshareEventEmiter.m */; };
|
|
97
|
+
DE9A015C289A9A9A00E41CBB /* JitsiMeetLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = DE81A2D32316AC4D00AE1940 /* JitsiMeetLogger.m */; };
|
|
98
|
+
DE9A015E289A9A9A00E41CBB /* JitsiMeetView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B412F171EDEC65D00B1A0A6 /* JitsiMeetView.m */; };
|
|
99
|
+
DE9A015F289A9A9A00E41CBB /* JitsiMeet.m in Sources */ = {isa = PBXBuildFile; fileRef = DEFE535321FB1BF800011A3A /* JitsiMeet.m */; };
|
|
100
|
+
DE9A0162289A9A9A00E41CBB /* Intents.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0BB9AD781F5EC6D7001C08DB /* Intents.framework */; settings = {ATTRIBUTES = (Weak, ); }; };
|
|
101
|
+
DE9A0163289A9A9A00E41CBB /* CallKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0BB9AD761F5EC6CE001C08DB /* CallKit.framework */; settings = {ATTRIBUTES = (Weak, ); }; };
|
|
102
|
+
DE9A0166289A9A9A00E41CBB /* CallKitIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 0BC4B8681F8C01E100CE8B21 /* CallKitIcon.png */; };
|
|
103
|
+
DE9A0167289A9A9A00E41CBB /* image-resize@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C6245F5B2053091D0040BE68 /* image-resize@2x.png */; };
|
|
104
|
+
DE9A0168289A9A9A00E41CBB /* image-resize@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = C6245F5C2053091D0040BE68 /* image-resize@3x.png */; };
|
|
105
|
+
DEA9F284258A5D9900D4CD74 /* JitsiMeetSDK.h in Headers */ = {isa = PBXBuildFile; fileRef = DEA9F283258A5D9900D4CD74 /* JitsiMeetSDK.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
106
|
+
DEAD3226220C497000E93636 /* JitsiMeetConferenceOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = DEAD3224220C497000E93636 /* JitsiMeetConferenceOptions.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
107
|
+
DEAD3227220C497000E93636 /* JitsiMeetConferenceOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = DEAD3225220C497000E93636 /* JitsiMeetConferenceOptions.m */; };
|
|
108
|
+
DEAFA779229EAD520033A7FA /* RNRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = DEAFA778229EAD520033A7FA /* RNRootView.m */; };
|
|
109
|
+
DEFC743F21B178FA00E4DD96 /* LocaleDetector.m in Sources */ = {isa = PBXBuildFile; fileRef = DEFC743D21B178FA00E4DD96 /* LocaleDetector.m */; };
|
|
110
|
+
DEFE535421FB1BF800011A3A /* JitsiMeet.m in Sources */ = {isa = PBXBuildFile; fileRef = DEFE535321FB1BF800011A3A /* JitsiMeet.m */; };
|
|
111
|
+
DEFE535621FB2E8300011A3A /* ReactUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = DEFE535521FB2E8300011A3A /* ReactUtils.m */; };
|
|
112
|
+
/* End PBXBuildFile section */
|
|
113
|
+
|
|
114
|
+
/* Begin PBXFileReference section */
|
|
115
|
+
09A78016288AF50ACD28A10D /* Pods-JitsiMeetSDK.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-JitsiMeetSDK.debug.xcconfig"; path = "../Pods/Target Support Files/Pods-JitsiMeetSDK/Pods-JitsiMeetSDK.debug.xcconfig"; sourceTree = "<group>"; };
|
|
116
|
+
0B412F161EDEC65D00B1A0A6 /* JitsiMeetView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JitsiMeetView.h; sourceTree = "<group>"; };
|
|
117
|
+
0B412F171EDEC65D00B1A0A6 /* JitsiMeetView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JitsiMeetView.m; sourceTree = "<group>"; };
|
|
118
|
+
0B412F1B1EDEC80100B1A0A6 /* JitsiMeetViewDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = JitsiMeetViewDelegate.h; sourceTree = "<group>"; };
|
|
119
|
+
0B93EF7A1EC608550030D24D /* CoreText.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreText.framework; path = System/Library/Frameworks/CoreText.framework; sourceTree = SDKROOT; };
|
|
120
|
+
0B93EF7C1EC9DDCD0030D24D /* RCTBridgeWrapper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RCTBridgeWrapper.h; sourceTree = "<group>"; };
|
|
121
|
+
0B93EF7D1EC9DDCD0030D24D /* RCTBridgeWrapper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTBridgeWrapper.m; sourceTree = "<group>"; };
|
|
122
|
+
0BA13D301EE83FF8007BEF7F /* ExternalAPI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ExternalAPI.m; sourceTree = "<group>"; };
|
|
123
|
+
0BB9AD761F5EC6CE001C08DB /* CallKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CallKit.framework; path = System/Library/Frameworks/CallKit.framework; sourceTree = SDKROOT; };
|
|
124
|
+
0BB9AD781F5EC6D7001C08DB /* Intents.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Intents.framework; path = System/Library/Frameworks/Intents.framework; sourceTree = SDKROOT; };
|
|
125
|
+
0BB9AD7A1F5EC8F4001C08DB /* CallKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CallKit.m; sourceTree = "<group>"; };
|
|
126
|
+
0BB9AD7C1F60356D001C08DB /* AppInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppInfo.m; sourceTree = "<group>"; };
|
|
127
|
+
0BC4B8681F8C01E100CE8B21 /* CallKitIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = CallKitIcon.png; path = "../../react/features/mobile/call-integration/CallKitIcon.png"; sourceTree = "<group>"; };
|
|
128
|
+
0BCA495C1EC4B6C600B793EE /* AudioMode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AudioMode.m; sourceTree = "<group>"; };
|
|
129
|
+
0BCA495D1EC4B6C600B793EE /* POSIX.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = POSIX.m; sourceTree = "<group>"; };
|
|
130
|
+
0BCA495E1EC4B6C600B793EE /* Proximity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Proximity.m; sourceTree = "<group>"; };
|
|
131
|
+
0BD906E51EC0C00300C8C18E /* JitsiMeetSDK.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = JitsiMeetSDK.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
132
|
+
0BD906E81EC0C00300C8C18E /* JitsiMeet.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = JitsiMeet.h; sourceTree = "<group>"; };
|
|
133
|
+
0BD906E91EC0C00300C8C18E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
|
134
|
+
4E0EF62E28CA2FB3005D1B03 /* JMCallKitEmitter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = JMCallKitEmitter.h; sourceTree = "<group>"; };
|
|
135
|
+
4E0EF62F28CA2FB3005D1B03 /* JMCallKitEmitter.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = JMCallKitEmitter.m; sourceTree = "<group>"; };
|
|
136
|
+
4E0EF63428CA317E005D1B03 /* JMCallKitListener.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = JMCallKitListener.h; sourceTree = "<group>"; };
|
|
137
|
+
4E0EF63728CA4069005D1B03 /* JMCallKitProxy.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = JMCallKitProxy.h; sourceTree = "<group>"; };
|
|
138
|
+
4E0EF63828CA4069005D1B03 /* JMCallKitProxy.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = JMCallKitProxy.m; sourceTree = "<group>"; };
|
|
139
|
+
4E51B76225E5345E0038575A /* ScheenshareEventEmiter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ScheenshareEventEmiter.h; sourceTree = "<group>"; };
|
|
140
|
+
4E51B76325E5345E0038575A /* ScheenshareEventEmiter.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ScheenshareEventEmiter.m; sourceTree = "<group>"; };
|
|
141
|
+
4E812F3228F9A4290087ACC9 /* JitsiMeetView+Private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "JitsiMeetView+Private.h"; sourceTree = "<group>"; };
|
|
142
|
+
4E812F3628F9A4ED0087ACC9 /* JitsiMeetView+Private.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "JitsiMeetView+Private.m"; sourceTree = "<group>"; };
|
|
143
|
+
4ED4FFF12721B9B90074E620 /* JitsiAudioSession.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = JitsiAudioSession.h; sourceTree = "<group>"; };
|
|
144
|
+
4ED4FFF22721B9B90074E620 /* JitsiAudioSession.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = JitsiAudioSession.m; sourceTree = "<group>"; };
|
|
145
|
+
4ED4FFF52721BAE10074E620 /* JitsiAudioSession+Private.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "JitsiAudioSession+Private.h"; sourceTree = "<group>"; };
|
|
146
|
+
86389F55993FAAF6AEB3FA3E /* Pods-JitsiMeetSDKLite.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-JitsiMeetSDKLite.release.xcconfig"; path = "../Pods/Target Support Files/Pods-JitsiMeetSDKLite/Pods-JitsiMeetSDKLite.release.xcconfig"; sourceTree = "<group>"; };
|
|
147
|
+
891FE43DAD30BC8976683100 /* Pods-JitsiMeetSDK.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-JitsiMeetSDK.release.xcconfig"; path = "../Pods/Target Support Files/Pods-JitsiMeetSDK/Pods-JitsiMeetSDK.release.xcconfig"; sourceTree = "<group>"; };
|
|
148
|
+
8F48C340DE0D91D1012976C5 /* Pods-JitsiMeetSDKLite.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-JitsiMeetSDKLite.debug.xcconfig"; path = "../Pods/Target Support Files/Pods-JitsiMeetSDKLite/Pods-JitsiMeetSDKLite.debug.xcconfig"; sourceTree = "<group>"; };
|
|
149
|
+
927ED7DF018DE5E12C4C3404 /* libPods-JitsiMeetSDK.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-JitsiMeetSDK.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
150
|
+
98E09B5C73D9036B4ED252FC /* Pods-JitsiMeet.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-JitsiMeet.debug.xcconfig"; path = "../Pods/Target Support Files/Pods-JitsiMeet/Pods-JitsiMeet.debug.xcconfig"; sourceTree = "<group>"; };
|
|
151
|
+
9C77CA3CC919B081F1A52982 /* Pods-JitsiMeet.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-JitsiMeet.release.xcconfig"; path = "../Pods/Target Support Files/Pods-JitsiMeet/Pods-JitsiMeet.release.xcconfig"; sourceTree = "<group>"; };
|
|
152
|
+
A4A934E8212F3ADB001E9388 /* Dropbox.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Dropbox.m; sourceTree = "<group>"; };
|
|
153
|
+
A4A934EB21349A06001E9388 /* Dropbox.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Dropbox.h; sourceTree = "<group>"; };
|
|
154
|
+
B46497DE9A95BDF5E312AF48 /* libPods-JitsiMeetSDKLite.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-JitsiMeetSDKLite.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
155
|
+
C6245F5B2053091D0040BE68 /* image-resize@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "image-resize@2x.png"; path = "src/picture-in-picture/image-resize@2x.png"; sourceTree = "<group>"; };
|
|
156
|
+
C6245F5C2053091D0040BE68 /* image-resize@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "image-resize@3x.png"; path = "src/picture-in-picture/image-resize@3x.png"; sourceTree = "<group>"; };
|
|
157
|
+
C6A3425E204EF76800E062DD /* DragGestureController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DragGestureController.swift; sourceTree = "<group>"; };
|
|
158
|
+
C6CC49AE207412CF000DFA42 /* PiPViewCoordinator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PiPViewCoordinator.swift; sourceTree = "<group>"; };
|
|
159
|
+
C81E9AB825AC5AD800B134D9 /* ExternalAPI.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ExternalAPI.h; sourceTree = "<group>"; };
|
|
160
|
+
C8AFD27D2462C613000293D2 /* InfoPlistUtil.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = InfoPlistUtil.h; sourceTree = "<group>"; };
|
|
161
|
+
C8AFD27E2462C613000293D2 /* InfoPlistUtil.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = InfoPlistUtil.m; sourceTree = "<group>"; };
|
|
162
|
+
DE65AAC92317FFCD00290BEC /* LogUtils.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LogUtils.h; sourceTree = "<group>"; };
|
|
163
|
+
DE65AACB2318028300290BEC /* JitsiMeetBaseLogHandler+Private.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "JitsiMeetBaseLogHandler+Private.h"; sourceTree = "<group>"; };
|
|
164
|
+
DE762DB322AFDE76000DEBD6 /* JitsiMeetUserInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = JitsiMeetUserInfo.h; sourceTree = "<group>"; };
|
|
165
|
+
DE762DB522AFDE8D000DEBD6 /* JitsiMeetUserInfo.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = JitsiMeetUserInfo.m; sourceTree = "<group>"; };
|
|
166
|
+
DE762DB722AFE166000DEBD6 /* JitsiMeetUserInfo+Private.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "JitsiMeetUserInfo+Private.h"; sourceTree = "<group>"; };
|
|
167
|
+
DE81A2D22316AC4D00AE1940 /* JitsiMeetLogger.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = JitsiMeetLogger.h; sourceTree = "<group>"; };
|
|
168
|
+
DE81A2D32316AC4D00AE1940 /* JitsiMeetLogger.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = JitsiMeetLogger.m; sourceTree = "<group>"; };
|
|
169
|
+
DE81A2D72316AC7600AE1940 /* LogBridge.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LogBridge.m; sourceTree = "<group>"; };
|
|
170
|
+
DE81A2DC2317ED5400AE1940 /* JitsiMeetBaseLogHandler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = JitsiMeetBaseLogHandler.h; sourceTree = "<group>"; };
|
|
171
|
+
DE81A2DD2317ED5400AE1940 /* JitsiMeetBaseLogHandler.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = JitsiMeetBaseLogHandler.m; sourceTree = "<group>"; };
|
|
172
|
+
DE9A016F289A9A9A00E41CBB /* JitsiMeetSDK.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = JitsiMeetSDK.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
173
|
+
DE9A0170289A9A9A00E41CBB /* Lite-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = "Lite-Info.plist"; path = "/Users/saghul/work/jitsi/jitsi-meet-prs/ios/sdk/src/Lite-Info.plist"; sourceTree = "<absolute>"; };
|
|
174
|
+
DEA9F283258A5D9900D4CD74 /* JitsiMeetSDK.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = JitsiMeetSDK.h; sourceTree = "<group>"; };
|
|
175
|
+
DEAD3224220C497000E93636 /* JitsiMeetConferenceOptions.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = JitsiMeetConferenceOptions.h; sourceTree = "<group>"; };
|
|
176
|
+
DEAD3225220C497000E93636 /* JitsiMeetConferenceOptions.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = JitsiMeetConferenceOptions.m; sourceTree = "<group>"; };
|
|
177
|
+
DEAD3228220C734300E93636 /* JitsiMeetConferenceOptions+Private.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "JitsiMeetConferenceOptions+Private.h"; sourceTree = "<group>"; };
|
|
178
|
+
DEAFA777229EAD3B0033A7FA /* RNRootView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RNRootView.h; sourceTree = "<group>"; };
|
|
179
|
+
DEAFA778229EAD520033A7FA /* RNRootView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RNRootView.m; sourceTree = "<group>"; };
|
|
180
|
+
DEFC743D21B178FA00E4DD96 /* LocaleDetector.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LocaleDetector.m; sourceTree = "<group>"; };
|
|
181
|
+
DEFE535321FB1BF800011A3A /* JitsiMeet.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = JitsiMeet.m; sourceTree = "<group>"; };
|
|
182
|
+
DEFE535521FB2E8300011A3A /* ReactUtils.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ReactUtils.m; sourceTree = "<group>"; };
|
|
183
|
+
DEFE535721FB2E9E00011A3A /* ReactUtils.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReactUtils.h; sourceTree = "<group>"; };
|
|
184
|
+
DEFE535821FB311F00011A3A /* JitsiMeet+Private.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "JitsiMeet+Private.h"; sourceTree = "<group>"; };
|
|
185
|
+
/* End PBXFileReference section */
|
|
186
|
+
|
|
187
|
+
/* Begin PBXFrameworksBuildPhase section */
|
|
188
|
+
0BD906E11EC0C00300C8C18E /* Frameworks */ = {
|
|
189
|
+
isa = PBXFrameworksBuildPhase;
|
|
190
|
+
buildActionMask = 2147483647;
|
|
191
|
+
files = (
|
|
192
|
+
0BB9AD791F5EC6D7001C08DB /* Intents.framework in Frameworks */,
|
|
193
|
+
0BB9AD771F5EC6CE001C08DB /* CallKit.framework in Frameworks */,
|
|
194
|
+
6F08DF7D4458EE3CF3F36F6D /* BuildFile in Frameworks */,
|
|
195
|
+
3453F4A32680898C4A40E821 /* libPods-JitsiMeetSDK.a in Frameworks */,
|
|
196
|
+
);
|
|
197
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
198
|
+
};
|
|
199
|
+
DE9A0161289A9A9A00E41CBB /* Frameworks */ = {
|
|
200
|
+
isa = PBXFrameworksBuildPhase;
|
|
201
|
+
buildActionMask = 2147483647;
|
|
202
|
+
files = (
|
|
203
|
+
DE9A0162289A9A9A00E41CBB /* Intents.framework in Frameworks */,
|
|
204
|
+
DE9A0163289A9A9A00E41CBB /* CallKit.framework in Frameworks */,
|
|
205
|
+
9A8EE79C77C17743BB66E8BD /* libPods-JitsiMeetSDKLite.a in Frameworks */,
|
|
206
|
+
);
|
|
207
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
208
|
+
};
|
|
209
|
+
/* End PBXFrameworksBuildPhase section */
|
|
210
|
+
|
|
211
|
+
/* Begin PBXGroup section */
|
|
212
|
+
0BCA49681EC4BBE500B793EE /* Resources */ = {
|
|
213
|
+
isa = PBXGroup;
|
|
214
|
+
children = (
|
|
215
|
+
0BC4B8681F8C01E100CE8B21 /* CallKitIcon.png */,
|
|
216
|
+
C6245F5B2053091D0040BE68 /* image-resize@2x.png */,
|
|
217
|
+
C6245F5C2053091D0040BE68 /* image-resize@3x.png */,
|
|
218
|
+
);
|
|
219
|
+
name = Resources;
|
|
220
|
+
sourceTree = "<group>";
|
|
221
|
+
};
|
|
222
|
+
0BD906DB1EC0C00300C8C18E = {
|
|
223
|
+
isa = PBXGroup;
|
|
224
|
+
children = (
|
|
225
|
+
9C3C6FA2341729836589B856 /* Frameworks */,
|
|
226
|
+
C5E72ADFC30ED96F9B35F076 /* Pods */,
|
|
227
|
+
0BD906E61EC0C00300C8C18E /* Products */,
|
|
228
|
+
0BCA49681EC4BBE500B793EE /* Resources */,
|
|
229
|
+
0BD906E71EC0C00300C8C18E /* src */,
|
|
230
|
+
);
|
|
231
|
+
sourceTree = "<group>";
|
|
232
|
+
};
|
|
233
|
+
0BD906E61EC0C00300C8C18E /* Products */ = {
|
|
234
|
+
isa = PBXGroup;
|
|
235
|
+
children = (
|
|
236
|
+
0BD906E51EC0C00300C8C18E /* JitsiMeetSDK.framework */,
|
|
237
|
+
DE9A016F289A9A9A00E41CBB /* JitsiMeetSDK.framework */,
|
|
238
|
+
);
|
|
239
|
+
name = Products;
|
|
240
|
+
sourceTree = "<group>";
|
|
241
|
+
};
|
|
242
|
+
0BD906E71EC0C00300C8C18E /* src */ = {
|
|
243
|
+
isa = PBXGroup;
|
|
244
|
+
children = (
|
|
245
|
+
0BB9AD7C1F60356D001C08DB /* AppInfo.m */,
|
|
246
|
+
0BCA495C1EC4B6C600B793EE /* AudioMode.m */,
|
|
247
|
+
C69EFA02209A0EFD0027712B /* callkit */,
|
|
248
|
+
A4A934E7212F3AB8001E9388 /* dropbox */,
|
|
249
|
+
0BD906E91EC0C00300C8C18E /* Info.plist */,
|
|
250
|
+
0BD906E81EC0C00300C8C18E /* JitsiMeet.h */,
|
|
251
|
+
DEFE535821FB311F00011A3A /* JitsiMeet+Private.h */,
|
|
252
|
+
DEA9F283258A5D9900D4CD74 /* JitsiMeetSDK.h */,
|
|
253
|
+
DEFE535321FB1BF800011A3A /* JitsiMeet.m */,
|
|
254
|
+
4ED4FFF12721B9B90074E620 /* JitsiAudioSession.h */,
|
|
255
|
+
4ED4FFF52721BAE10074E620 /* JitsiAudioSession+Private.h */,
|
|
256
|
+
4ED4FFF22721B9B90074E620 /* JitsiAudioSession.m */,
|
|
257
|
+
DEAD3224220C497000E93636 /* JitsiMeetConferenceOptions.h */,
|
|
258
|
+
DEAD3228220C734300E93636 /* JitsiMeetConferenceOptions+Private.h */,
|
|
259
|
+
DEAD3225220C497000E93636 /* JitsiMeetConferenceOptions.m */,
|
|
260
|
+
DE762DB322AFDE76000DEBD6 /* JitsiMeetUserInfo.h */,
|
|
261
|
+
DE762DB722AFE166000DEBD6 /* JitsiMeetUserInfo+Private.h */,
|
|
262
|
+
DE762DB522AFDE8D000DEBD6 /* JitsiMeetUserInfo.m */,
|
|
263
|
+
DE81A2D22316AC4D00AE1940 /* JitsiMeetLogger.h */,
|
|
264
|
+
DE81A2D32316AC4D00AE1940 /* JitsiMeetLogger.m */,
|
|
265
|
+
DE81A2DC2317ED5400AE1940 /* JitsiMeetBaseLogHandler.h */,
|
|
266
|
+
DE65AACB2318028300290BEC /* JitsiMeetBaseLogHandler+Private.h */,
|
|
267
|
+
DE81A2DD2317ED5400AE1940 /* JitsiMeetBaseLogHandler.m */,
|
|
268
|
+
4E812F3228F9A4290087ACC9 /* JitsiMeetView+Private.h */,
|
|
269
|
+
4E812F3628F9A4ED0087ACC9 /* JitsiMeetView+Private.m */,
|
|
270
|
+
0B412F161EDEC65D00B1A0A6 /* JitsiMeetView.h */,
|
|
271
|
+
0B412F171EDEC65D00B1A0A6 /* JitsiMeetView.m */,
|
|
272
|
+
DE81A2D72316AC7600AE1940 /* LogBridge.m */,
|
|
273
|
+
DE65AAC92317FFCD00290BEC /* LogUtils.h */,
|
|
274
|
+
DEAFA777229EAD3B0033A7FA /* RNRootView.h */,
|
|
275
|
+
DEAFA778229EAD520033A7FA /* RNRootView.m */,
|
|
276
|
+
0B412F1B1EDEC80100B1A0A6 /* JitsiMeetViewDelegate.h */,
|
|
277
|
+
DEFC743D21B178FA00E4DD96 /* LocaleDetector.m */,
|
|
278
|
+
C6A3426B204F127900E062DD /* picture-in-picture */,
|
|
279
|
+
0BCA495D1EC4B6C600B793EE /* POSIX.m */,
|
|
280
|
+
0BCA495E1EC4B6C600B793EE /* Proximity.m */,
|
|
281
|
+
DEFE535721FB2E9E00011A3A /* ReactUtils.h */,
|
|
282
|
+
DEFE535521FB2E8300011A3A /* ReactUtils.m */,
|
|
283
|
+
0B93EF7C1EC9DDCD0030D24D /* RCTBridgeWrapper.h */,
|
|
284
|
+
0B93EF7D1EC9DDCD0030D24D /* RCTBridgeWrapper.m */,
|
|
285
|
+
C8AFD27D2462C613000293D2 /* InfoPlistUtil.h */,
|
|
286
|
+
C8AFD27E2462C613000293D2 /* InfoPlistUtil.m */,
|
|
287
|
+
C81E9AB825AC5AD800B134D9 /* ExternalAPI.h */,
|
|
288
|
+
0BA13D301EE83FF8007BEF7F /* ExternalAPI.m */,
|
|
289
|
+
4E51B76225E5345E0038575A /* ScheenshareEventEmiter.h */,
|
|
290
|
+
4E51B76325E5345E0038575A /* ScheenshareEventEmiter.m */,
|
|
291
|
+
DE9A0170289A9A9A00E41CBB /* Lite-Info.plist */,
|
|
292
|
+
);
|
|
293
|
+
path = src;
|
|
294
|
+
sourceTree = "<group>";
|
|
295
|
+
};
|
|
296
|
+
9C3C6FA2341729836589B856 /* Frameworks */ = {
|
|
297
|
+
isa = PBXGroup;
|
|
298
|
+
children = (
|
|
299
|
+
0BB9AD761F5EC6CE001C08DB /* CallKit.framework */,
|
|
300
|
+
0B93EF7A1EC608550030D24D /* CoreText.framework */,
|
|
301
|
+
0BB9AD781F5EC6D7001C08DB /* Intents.framework */,
|
|
302
|
+
B46497DE9A95BDF5E312AF48 /* libPods-JitsiMeetSDKLite.a */,
|
|
303
|
+
927ED7DF018DE5E12C4C3404 /* libPods-JitsiMeetSDK.a */,
|
|
304
|
+
);
|
|
305
|
+
name = Frameworks;
|
|
306
|
+
sourceTree = "<group>";
|
|
307
|
+
};
|
|
308
|
+
A4A934E7212F3AB8001E9388 /* dropbox */ = {
|
|
309
|
+
isa = PBXGroup;
|
|
310
|
+
children = (
|
|
311
|
+
A4A934EB21349A06001E9388 /* Dropbox.h */,
|
|
312
|
+
A4A934E8212F3ADB001E9388 /* Dropbox.m */,
|
|
313
|
+
);
|
|
314
|
+
path = dropbox;
|
|
315
|
+
sourceTree = "<group>";
|
|
316
|
+
};
|
|
317
|
+
C5E72ADFC30ED96F9B35F076 /* Pods */ = {
|
|
318
|
+
isa = PBXGroup;
|
|
319
|
+
children = (
|
|
320
|
+
98E09B5C73D9036B4ED252FC /* Pods-JitsiMeet.debug.xcconfig */,
|
|
321
|
+
9C77CA3CC919B081F1A52982 /* Pods-JitsiMeet.release.xcconfig */,
|
|
322
|
+
09A78016288AF50ACD28A10D /* Pods-JitsiMeetSDK.debug.xcconfig */,
|
|
323
|
+
891FE43DAD30BC8976683100 /* Pods-JitsiMeetSDK.release.xcconfig */,
|
|
324
|
+
8F48C340DE0D91D1012976C5 /* Pods-JitsiMeetSDKLite.debug.xcconfig */,
|
|
325
|
+
86389F55993FAAF6AEB3FA3E /* Pods-JitsiMeetSDKLite.release.xcconfig */,
|
|
326
|
+
);
|
|
327
|
+
name = Pods;
|
|
328
|
+
sourceTree = "<group>";
|
|
329
|
+
};
|
|
330
|
+
C69EFA02209A0EFD0027712B /* callkit */ = {
|
|
331
|
+
isa = PBXGroup;
|
|
332
|
+
children = (
|
|
333
|
+
0BB9AD7A1F5EC8F4001C08DB /* CallKit.m */,
|
|
334
|
+
4E0EF62E28CA2FB3005D1B03 /* JMCallKitEmitter.h */,
|
|
335
|
+
4E0EF62F28CA2FB3005D1B03 /* JMCallKitEmitter.m */,
|
|
336
|
+
4E0EF63428CA317E005D1B03 /* JMCallKitListener.h */,
|
|
337
|
+
4E0EF63728CA4069005D1B03 /* JMCallKitProxy.h */,
|
|
338
|
+
4E0EF63828CA4069005D1B03 /* JMCallKitProxy.m */,
|
|
339
|
+
);
|
|
340
|
+
path = callkit;
|
|
341
|
+
sourceTree = "<group>";
|
|
342
|
+
};
|
|
343
|
+
C6A3426B204F127900E062DD /* picture-in-picture */ = {
|
|
344
|
+
isa = PBXGroup;
|
|
345
|
+
children = (
|
|
346
|
+
C6A3425E204EF76800E062DD /* DragGestureController.swift */,
|
|
347
|
+
C6CC49AE207412CF000DFA42 /* PiPViewCoordinator.swift */,
|
|
348
|
+
);
|
|
349
|
+
path = "picture-in-picture";
|
|
350
|
+
sourceTree = "<group>";
|
|
351
|
+
};
|
|
352
|
+
/* End PBXGroup section */
|
|
353
|
+
|
|
354
|
+
/* Begin PBXHeadersBuildPhase section */
|
|
355
|
+
0BD906E21EC0C00300C8C18E /* Headers */ = {
|
|
356
|
+
isa = PBXHeadersBuildPhase;
|
|
357
|
+
buildActionMask = 2147483647;
|
|
358
|
+
files = (
|
|
359
|
+
DE762DB422AFDE76000DEBD6 /* JitsiMeetUserInfo.h in Headers */,
|
|
360
|
+
0B412F181EDEC65D00B1A0A6 /* JitsiMeetView.h in Headers */,
|
|
361
|
+
0B93EF7E1EC9DDCD0030D24D /* RCTBridgeWrapper.h in Headers */,
|
|
362
|
+
DE81A2DE2317ED5400AE1940 /* JitsiMeetBaseLogHandler.h in Headers */,
|
|
363
|
+
DEA9F284258A5D9900D4CD74 /* JitsiMeetSDK.h in Headers */,
|
|
364
|
+
4E51B76425E5345E0038575A /* ScheenshareEventEmiter.h in Headers */,
|
|
365
|
+
DE65AACC2318028300290BEC /* JitsiMeetBaseLogHandler+Private.h in Headers */,
|
|
366
|
+
0B412F221EDEF6EA00B1A0A6 /* JitsiMeetViewDelegate.h in Headers */,
|
|
367
|
+
4E0EF63528CA317E005D1B03 /* JMCallKitListener.h in Headers */,
|
|
368
|
+
4E0EF63028CA2FB3005D1B03 /* JMCallKitEmitter.h in Headers */,
|
|
369
|
+
4ED4FFF32721B9B90074E620 /* JitsiAudioSession.h in Headers */,
|
|
370
|
+
4E0EF63928CA4069005D1B03 /* JMCallKitProxy.h in Headers */,
|
|
371
|
+
0BD906EA1EC0C00300C8C18E /* JitsiMeet.h in Headers */,
|
|
372
|
+
DE81A2D42316AC4D00AE1940 /* JitsiMeetLogger.h in Headers */,
|
|
373
|
+
DE65AACA2317FFCD00290BEC /* LogUtils.h in Headers */,
|
|
374
|
+
DEAD3226220C497000E93636 /* JitsiMeetConferenceOptions.h in Headers */,
|
|
375
|
+
C81E9AB925AC5AD800B134D9 /* ExternalAPI.h in Headers */,
|
|
376
|
+
C8AFD27F2462C613000293D2 /* InfoPlistUtil.h in Headers */,
|
|
377
|
+
4E812F3328F9A4290087ACC9 /* JitsiMeetView+Private.h in Headers */,
|
|
378
|
+
);
|
|
379
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
380
|
+
};
|
|
381
|
+
DE9A012F289A9A9A00E41CBB /* Headers */ = {
|
|
382
|
+
isa = PBXHeadersBuildPhase;
|
|
383
|
+
buildActionMask = 2147483647;
|
|
384
|
+
files = (
|
|
385
|
+
DE9A0130289A9A9A00E41CBB /* JitsiMeetUserInfo.h in Headers */,
|
|
386
|
+
DE9A0131289A9A9A00E41CBB /* JitsiMeetView.h in Headers */,
|
|
387
|
+
DE9A0132289A9A9A00E41CBB /* RCTBridgeWrapper.h in Headers */,
|
|
388
|
+
DE9A0133289A9A9A00E41CBB /* JitsiMeetBaseLogHandler.h in Headers */,
|
|
389
|
+
DE9A0134289A9A9A00E41CBB /* JitsiMeetSDK.h in Headers */,
|
|
390
|
+
DE9A0135289A9A9A00E41CBB /* ScheenshareEventEmiter.h in Headers */,
|
|
391
|
+
DE9A0136289A9A9A00E41CBB /* JitsiMeetBaseLogHandler+Private.h in Headers */,
|
|
392
|
+
DE9A0138289A9A9A00E41CBB /* JitsiMeetViewDelegate.h in Headers */,
|
|
393
|
+
4E0EF63628CA317E005D1B03 /* JMCallKitListener.h in Headers */,
|
|
394
|
+
4E0EF63128CA2FB3005D1B03 /* JMCallKitEmitter.h in Headers */,
|
|
395
|
+
DE9A0139289A9A9A00E41CBB /* JitsiAudioSession.h in Headers */,
|
|
396
|
+
4E0EF63A28CA4069005D1B03 /* JMCallKitProxy.h in Headers */,
|
|
397
|
+
DE9A013B289A9A9A00E41CBB /* JitsiMeet.h in Headers */,
|
|
398
|
+
DE9A013C289A9A9A00E41CBB /* JitsiMeetLogger.h in Headers */,
|
|
399
|
+
DE9A013D289A9A9A00E41CBB /* LogUtils.h in Headers */,
|
|
400
|
+
DE9A013F289A9A9A00E41CBB /* JitsiMeetConferenceOptions.h in Headers */,
|
|
401
|
+
DE9A0140289A9A9A00E41CBB /* ExternalAPI.h in Headers */,
|
|
402
|
+
DE9A0141289A9A9A00E41CBB /* InfoPlistUtil.h in Headers */,
|
|
403
|
+
4E812F3428F9A4290087ACC9 /* JitsiMeetView+Private.h in Headers */,
|
|
404
|
+
);
|
|
405
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
406
|
+
};
|
|
407
|
+
/* End PBXHeadersBuildPhase section */
|
|
408
|
+
|
|
409
|
+
/* Begin PBXNativeTarget section */
|
|
410
|
+
0BD906E41EC0C00300C8C18E /* JitsiMeetSDK */ = {
|
|
411
|
+
isa = PBXNativeTarget;
|
|
412
|
+
buildConfigurationList = 0BD906ED1EC0C00300C8C18E /* Build configuration list for PBXNativeTarget "JitsiMeetSDK" */;
|
|
413
|
+
buildPhases = (
|
|
414
|
+
26796D8589142D80C8AFDA51 /* [CP] Check Pods Manifest.lock */,
|
|
415
|
+
0BD906E21EC0C00300C8C18E /* Headers */,
|
|
416
|
+
0BD906E01EC0C00300C8C18E /* Sources */,
|
|
417
|
+
0BD906E11EC0C00300C8C18E /* Frameworks */,
|
|
418
|
+
0BD906E31EC0C00300C8C18E /* Resources */,
|
|
419
|
+
DE17D0D426E0B86300F77E2E /* Copy sounds */,
|
|
420
|
+
0BCA49651EC4B77500B793EE /* Package React bundle */,
|
|
421
|
+
C7BC10B338C94EEB98048E64 /* [CP] Copy Pods Resources */,
|
|
422
|
+
);
|
|
423
|
+
buildRules = (
|
|
424
|
+
);
|
|
425
|
+
dependencies = (
|
|
426
|
+
);
|
|
427
|
+
name = JitsiMeetSDK;
|
|
428
|
+
productName = "Jitsi Meet SDK";
|
|
429
|
+
productReference = 0BD906E51EC0C00300C8C18E /* JitsiMeetSDK.framework */;
|
|
430
|
+
productType = "com.apple.product-type.framework";
|
|
431
|
+
};
|
|
432
|
+
DE9A012D289A9A9A00E41CBB /* JitsiMeetSDKLite */ = {
|
|
433
|
+
isa = PBXNativeTarget;
|
|
434
|
+
buildConfigurationList = DE9A016C289A9A9A00E41CBB /* Build configuration list for PBXNativeTarget "JitsiMeetSDKLite" */;
|
|
435
|
+
buildPhases = (
|
|
436
|
+
DE9A012E289A9A9A00E41CBB /* [CP] Check Pods Manifest.lock */,
|
|
437
|
+
DE9A012F289A9A9A00E41CBB /* Headers */,
|
|
438
|
+
DE9A0142289A9A9A00E41CBB /* Sources */,
|
|
439
|
+
DE9A0161289A9A9A00E41CBB /* Frameworks */,
|
|
440
|
+
DE9A0165289A9A9A00E41CBB /* Resources */,
|
|
441
|
+
DE9A0169289A9A9A00E41CBB /* Copy sounds */,
|
|
442
|
+
DE9A016A289A9A9A00E41CBB /* Package React bundle */,
|
|
443
|
+
DE9A016B289A9A9A00E41CBB /* [CP] Copy Pods Resources */,
|
|
444
|
+
);
|
|
445
|
+
buildRules = (
|
|
446
|
+
);
|
|
447
|
+
dependencies = (
|
|
448
|
+
);
|
|
449
|
+
name = JitsiMeetSDKLite;
|
|
450
|
+
productName = "Jitsi Meet SDK";
|
|
451
|
+
productReference = DE9A016F289A9A9A00E41CBB /* JitsiMeetSDK.framework */;
|
|
452
|
+
productType = "com.apple.product-type.framework";
|
|
453
|
+
};
|
|
454
|
+
/* End PBXNativeTarget section */
|
|
455
|
+
|
|
456
|
+
/* Begin PBXProject section */
|
|
457
|
+
0BD906DC1EC0C00300C8C18E /* Project object */ = {
|
|
458
|
+
isa = PBXProject;
|
|
459
|
+
attributes = {
|
|
460
|
+
LastUpgradeCheck = 1020;
|
|
461
|
+
ORGANIZATIONNAME = Jitsi;
|
|
462
|
+
TargetAttributes = {
|
|
463
|
+
0BD906E41EC0C00300C8C18E = {
|
|
464
|
+
CreatedOnToolsVersion = 8.3.2;
|
|
465
|
+
LastSwiftMigration = 1010;
|
|
466
|
+
ProvisioningStyle = Automatic;
|
|
467
|
+
};
|
|
468
|
+
};
|
|
469
|
+
};
|
|
470
|
+
buildConfigurationList = 0BD906DF1EC0C00300C8C18E /* Build configuration list for PBXProject "sdk" */;
|
|
471
|
+
compatibilityVersion = "Xcode 12.0";
|
|
472
|
+
developmentRegion = en;
|
|
473
|
+
hasScannedForEncodings = 0;
|
|
474
|
+
knownRegions = (
|
|
475
|
+
en,
|
|
476
|
+
Base,
|
|
477
|
+
);
|
|
478
|
+
mainGroup = 0BD906DB1EC0C00300C8C18E;
|
|
479
|
+
productRefGroup = 0BD906E61EC0C00300C8C18E /* Products */;
|
|
480
|
+
projectDirPath = "";
|
|
481
|
+
projectRoot = "";
|
|
482
|
+
targets = (
|
|
483
|
+
0BD906E41EC0C00300C8C18E /* JitsiMeetSDK */,
|
|
484
|
+
DE9A012D289A9A9A00E41CBB /* JitsiMeetSDKLite */,
|
|
485
|
+
);
|
|
486
|
+
};
|
|
487
|
+
/* End PBXProject section */
|
|
488
|
+
|
|
489
|
+
/* Begin PBXResourcesBuildPhase section */
|
|
490
|
+
0BD906E31EC0C00300C8C18E /* Resources */ = {
|
|
491
|
+
isa = PBXResourcesBuildPhase;
|
|
492
|
+
buildActionMask = 2147483647;
|
|
493
|
+
files = (
|
|
494
|
+
0BC4B8691F8C03A700CE8B21 /* CallKitIcon.png in Resources */,
|
|
495
|
+
C6245F5D2053091D0040BE68 /* image-resize@2x.png in Resources */,
|
|
496
|
+
C6245F5E2053091D0040BE68 /* image-resize@3x.png in Resources */,
|
|
497
|
+
);
|
|
498
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
499
|
+
};
|
|
500
|
+
DE9A0165289A9A9A00E41CBB /* Resources */ = {
|
|
501
|
+
isa = PBXResourcesBuildPhase;
|
|
502
|
+
buildActionMask = 2147483647;
|
|
503
|
+
files = (
|
|
504
|
+
DE9A0166289A9A9A00E41CBB /* CallKitIcon.png in Resources */,
|
|
505
|
+
DE9A0167289A9A9A00E41CBB /* image-resize@2x.png in Resources */,
|
|
506
|
+
DE9A0168289A9A9A00E41CBB /* image-resize@3x.png in Resources */,
|
|
507
|
+
);
|
|
508
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
509
|
+
};
|
|
510
|
+
/* End PBXResourcesBuildPhase section */
|
|
511
|
+
|
|
512
|
+
/* Begin PBXShellScriptBuildPhase section */
|
|
513
|
+
0BCA49651EC4B77500B793EE /* Package React bundle */ = {
|
|
514
|
+
isa = PBXShellScriptBuildPhase;
|
|
515
|
+
buildActionMask = 2147483647;
|
|
516
|
+
files = (
|
|
517
|
+
);
|
|
518
|
+
inputPaths = (
|
|
519
|
+
);
|
|
520
|
+
name = "Package React bundle";
|
|
521
|
+
outputPaths = (
|
|
522
|
+
);
|
|
523
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
524
|
+
shellPath = /bin/sh;
|
|
525
|
+
shellScript = "WITH_ENVIRONMENT=\"../../node_modules/react-native/scripts/xcode/with-environment.sh\"\nREACT_NATIVE_XCODE=\"../../node_modules/react-native/scripts/react-native-xcode.sh\"\n\n/bin/sh -c \"$WITH_ENVIRONMENT $REACT_NATIVE_XCODE\"\n";
|
|
526
|
+
};
|
|
527
|
+
26796D8589142D80C8AFDA51 /* [CP] Check Pods Manifest.lock */ = {
|
|
528
|
+
isa = PBXShellScriptBuildPhase;
|
|
529
|
+
buildActionMask = 2147483647;
|
|
530
|
+
files = (
|
|
531
|
+
);
|
|
532
|
+
inputPaths = (
|
|
533
|
+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
|
534
|
+
"${PODS_ROOT}/Manifest.lock",
|
|
535
|
+
);
|
|
536
|
+
name = "[CP] Check Pods Manifest.lock";
|
|
537
|
+
outputPaths = (
|
|
538
|
+
"$(DERIVED_FILE_DIR)/Pods-JitsiMeetSDK-checkManifestLockResult.txt",
|
|
539
|
+
);
|
|
540
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
541
|
+
shellPath = /bin/sh;
|
|
542
|
+
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
|
543
|
+
showEnvVarsInLog = 0;
|
|
544
|
+
};
|
|
545
|
+
C7BC10B338C94EEB98048E64 /* [CP] Copy Pods Resources */ = {
|
|
546
|
+
isa = PBXShellScriptBuildPhase;
|
|
547
|
+
buildActionMask = 2147483647;
|
|
548
|
+
files = (
|
|
549
|
+
);
|
|
550
|
+
inputFileListPaths = (
|
|
551
|
+
"${PODS_ROOT}/Target Support Files/Pods-JitsiMeetSDK/Pods-JitsiMeetSDK-resources-${CONFIGURATION}-input-files.xcfilelist",
|
|
552
|
+
);
|
|
553
|
+
name = "[CP] Copy Pods Resources";
|
|
554
|
+
outputFileListPaths = (
|
|
555
|
+
"${PODS_ROOT}/Target Support Files/Pods-JitsiMeetSDK/Pods-JitsiMeetSDK-resources-${CONFIGURATION}-output-files.xcfilelist",
|
|
556
|
+
);
|
|
557
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
558
|
+
shellPath = /bin/sh;
|
|
559
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-JitsiMeetSDK/Pods-JitsiMeetSDK-resources.sh\"\n";
|
|
560
|
+
showEnvVarsInLog = 0;
|
|
561
|
+
};
|
|
562
|
+
DE17D0D426E0B86300F77E2E /* Copy sounds */ = {
|
|
563
|
+
isa = PBXShellScriptBuildPhase;
|
|
564
|
+
buildActionMask = 2147483647;
|
|
565
|
+
files = (
|
|
566
|
+
);
|
|
567
|
+
inputFileListPaths = (
|
|
568
|
+
);
|
|
569
|
+
inputPaths = (
|
|
570
|
+
);
|
|
571
|
+
name = "Copy sounds";
|
|
572
|
+
outputFileListPaths = (
|
|
573
|
+
);
|
|
574
|
+
outputPaths = (
|
|
575
|
+
);
|
|
576
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
577
|
+
shellPath = /bin/sh;
|
|
578
|
+
shellScript = "SOUNDS_DIR=\"${PROJECT_DIR}/../../sounds\"\n\ncp $SOUNDS_DIR/* ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/\n";
|
|
579
|
+
};
|
|
580
|
+
DE9A012E289A9A9A00E41CBB /* [CP] Check Pods Manifest.lock */ = {
|
|
581
|
+
isa = PBXShellScriptBuildPhase;
|
|
582
|
+
buildActionMask = 2147483647;
|
|
583
|
+
files = (
|
|
584
|
+
);
|
|
585
|
+
inputPaths = (
|
|
586
|
+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
|
587
|
+
"${PODS_ROOT}/Manifest.lock",
|
|
588
|
+
);
|
|
589
|
+
name = "[CP] Check Pods Manifest.lock";
|
|
590
|
+
outputPaths = (
|
|
591
|
+
"$(DERIVED_FILE_DIR)/Pods-JitsiMeetSDKLite-checkManifestLockResult.txt",
|
|
592
|
+
);
|
|
593
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
594
|
+
shellPath = /bin/sh;
|
|
595
|
+
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
|
596
|
+
showEnvVarsInLog = 0;
|
|
597
|
+
};
|
|
598
|
+
DE9A0169289A9A9A00E41CBB /* Copy sounds */ = {
|
|
599
|
+
isa = PBXShellScriptBuildPhase;
|
|
600
|
+
buildActionMask = 2147483647;
|
|
601
|
+
files = (
|
|
602
|
+
);
|
|
603
|
+
inputFileListPaths = (
|
|
604
|
+
);
|
|
605
|
+
inputPaths = (
|
|
606
|
+
);
|
|
607
|
+
name = "Copy sounds";
|
|
608
|
+
outputFileListPaths = (
|
|
609
|
+
);
|
|
610
|
+
outputPaths = (
|
|
611
|
+
);
|
|
612
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
613
|
+
shellPath = /bin/sh;
|
|
614
|
+
shellScript = "SOUNDS_DIR=\"${PROJECT_DIR}/../../sounds\"\n\ncp $SOUNDS_DIR/* ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/\n";
|
|
615
|
+
};
|
|
616
|
+
DE9A016A289A9A9A00E41CBB /* Package React bundle */ = {
|
|
617
|
+
isa = PBXShellScriptBuildPhase;
|
|
618
|
+
buildActionMask = 2147483647;
|
|
619
|
+
files = (
|
|
620
|
+
);
|
|
621
|
+
inputPaths = (
|
|
622
|
+
);
|
|
623
|
+
name = "Package React bundle";
|
|
624
|
+
outputPaths = (
|
|
625
|
+
);
|
|
626
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
627
|
+
shellPath = /bin/sh;
|
|
628
|
+
shellScript = "WITH_ENVIRONMENT=\"../../node_modules/react-native/scripts/xcode/with-environment.sh\"\nREACT_NATIVE_XCODE=\"../../node_modules/react-native/scripts/react-native-xcode.sh\"\n\n/bin/sh -c \"$WITH_ENVIRONMENT $REACT_NATIVE_XCODE\"\n";
|
|
629
|
+
};
|
|
630
|
+
DE9A016B289A9A9A00E41CBB /* [CP] Copy Pods Resources */ = {
|
|
631
|
+
isa = PBXShellScriptBuildPhase;
|
|
632
|
+
buildActionMask = 2147483647;
|
|
633
|
+
files = (
|
|
634
|
+
);
|
|
635
|
+
inputFileListPaths = (
|
|
636
|
+
"${PODS_ROOT}/Target Support Files/Pods-JitsiMeetSDKLite/Pods-JitsiMeetSDKLite-resources-${CONFIGURATION}-input-files.xcfilelist",
|
|
637
|
+
);
|
|
638
|
+
name = "[CP] Copy Pods Resources";
|
|
639
|
+
outputFileListPaths = (
|
|
640
|
+
"${PODS_ROOT}/Target Support Files/Pods-JitsiMeetSDKLite/Pods-JitsiMeetSDKLite-resources-${CONFIGURATION}-output-files.xcfilelist",
|
|
641
|
+
);
|
|
642
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
643
|
+
shellPath = /bin/sh;
|
|
644
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-JitsiMeetSDKLite/Pods-JitsiMeetSDKLite-resources.sh\"\n";
|
|
645
|
+
showEnvVarsInLog = 0;
|
|
646
|
+
};
|
|
647
|
+
/* End PBXShellScriptBuildPhase section */
|
|
648
|
+
|
|
649
|
+
/* Begin PBXSourcesBuildPhase section */
|
|
650
|
+
0BD906E01EC0C00300C8C18E /* Sources */ = {
|
|
651
|
+
isa = PBXSourcesBuildPhase;
|
|
652
|
+
buildActionMask = 2147483647;
|
|
653
|
+
files = (
|
|
654
|
+
0BB9AD7B1F5EC8F4001C08DB /* CallKit.m in Sources */,
|
|
655
|
+
DE81A2DF2317ED5400AE1940 /* JitsiMeetBaseLogHandler.m in Sources */,
|
|
656
|
+
4E0EF63B28CA4069005D1B03 /* JMCallKitProxy.m in Sources */,
|
|
657
|
+
4ED4FFF42721B9B90074E620 /* JitsiAudioSession.m in Sources */,
|
|
658
|
+
4E812F3928F9A4ED0087ACC9 /* JitsiMeetView+Private.m in Sources */,
|
|
659
|
+
0BB9AD7D1F60356D001C08DB /* AppInfo.m in Sources */,
|
|
660
|
+
DE81A2D92316AC7600AE1940 /* LogBridge.m in Sources */,
|
|
661
|
+
DEAFA779229EAD520033A7FA /* RNRootView.m in Sources */,
|
|
662
|
+
DE762DB622AFDE8D000DEBD6 /* JitsiMeetUserInfo.m in Sources */,
|
|
663
|
+
DEAD3227220C497000E93636 /* JitsiMeetConferenceOptions.m in Sources */,
|
|
664
|
+
0B93EF7F1EC9DDCD0030D24D /* RCTBridgeWrapper.m in Sources */,
|
|
665
|
+
0BA13D311EE83FF8007BEF7F /* ExternalAPI.m in Sources */,
|
|
666
|
+
0BCA49601EC4B6C600B793EE /* POSIX.m in Sources */,
|
|
667
|
+
C8AFD2802462C613000293D2 /* InfoPlistUtil.m in Sources */,
|
|
668
|
+
C6CC49AF207412CF000DFA42 /* PiPViewCoordinator.swift in Sources */,
|
|
669
|
+
DEFC743F21B178FA00E4DD96 /* LocaleDetector.m in Sources */,
|
|
670
|
+
0BCA495F1EC4B6C600B793EE /* AudioMode.m in Sources */,
|
|
671
|
+
0BCA49611EC4B6C600B793EE /* Proximity.m in Sources */,
|
|
672
|
+
4E0EF63228CA2FB3005D1B03 /* JMCallKitEmitter.m in Sources */,
|
|
673
|
+
DEFE535621FB2E8300011A3A /* ReactUtils.m in Sources */,
|
|
674
|
+
C6A34261204EF76800E062DD /* DragGestureController.swift in Sources */,
|
|
675
|
+
4E51B76525E5345E0038575A /* ScheenshareEventEmiter.m in Sources */,
|
|
676
|
+
A4A934E9212F3ADB001E9388 /* Dropbox.m in Sources */,
|
|
677
|
+
DE81A2D52316AC4D00AE1940 /* JitsiMeetLogger.m in Sources */,
|
|
678
|
+
0B412F191EDEC65D00B1A0A6 /* JitsiMeetView.m in Sources */,
|
|
679
|
+
DEFE535421FB1BF800011A3A /* JitsiMeet.m in Sources */,
|
|
680
|
+
);
|
|
681
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
682
|
+
};
|
|
683
|
+
DE9A0142289A9A9A00E41CBB /* Sources */ = {
|
|
684
|
+
isa = PBXSourcesBuildPhase;
|
|
685
|
+
buildActionMask = 2147483647;
|
|
686
|
+
files = (
|
|
687
|
+
DE9A0143289A9A9A00E41CBB /* CallKit.m in Sources */,
|
|
688
|
+
DE9A0144289A9A9A00E41CBB /* JitsiMeetBaseLogHandler.m in Sources */,
|
|
689
|
+
DE9A0146289A9A9A00E41CBB /* JitsiAudioSession.m in Sources */,
|
|
690
|
+
4E0EF63C28CA4069005D1B03 /* JMCallKitProxy.m in Sources */,
|
|
691
|
+
DE9A0147289A9A9A00E41CBB /* AppInfo.m in Sources */,
|
|
692
|
+
DE9A0148289A9A9A00E41CBB /* LogBridge.m in Sources */,
|
|
693
|
+
DE9A0149289A9A9A00E41CBB /* RNRootView.m in Sources */,
|
|
694
|
+
DE9A014A289A9A9A00E41CBB /* JitsiMeetUserInfo.m in Sources */,
|
|
695
|
+
DE9A014B289A9A9A00E41CBB /* JitsiMeetConferenceOptions.m in Sources */,
|
|
696
|
+
DE9A014C289A9A9A00E41CBB /* RCTBridgeWrapper.m in Sources */,
|
|
697
|
+
DE9A014D289A9A9A00E41CBB /* ExternalAPI.m in Sources */,
|
|
698
|
+
DE9A014E289A9A9A00E41CBB /* POSIX.m in Sources */,
|
|
699
|
+
DE9A014F289A9A9A00E41CBB /* InfoPlistUtil.m in Sources */,
|
|
700
|
+
DE9A0150289A9A9A00E41CBB /* PiPViewCoordinator.swift in Sources */,
|
|
701
|
+
DE9A0151289A9A9A00E41CBB /* LocaleDetector.m in Sources */,
|
|
702
|
+
DE9A0152289A9A9A00E41CBB /* AudioMode.m in Sources */,
|
|
703
|
+
DE9A0153289A9A9A00E41CBB /* Proximity.m in Sources */,
|
|
704
|
+
4E812F3A28F9A4ED0087ACC9 /* JitsiMeetView+Private.m in Sources */,
|
|
705
|
+
DE9A0155289A9A9A00E41CBB /* ReactUtils.m in Sources */,
|
|
706
|
+
DE9A0157289A9A9A00E41CBB /* DragGestureController.swift in Sources */,
|
|
707
|
+
DE9A0158289A9A9A00E41CBB /* ScheenshareEventEmiter.m in Sources */,
|
|
708
|
+
DE9A015C289A9A9A00E41CBB /* JitsiMeetLogger.m in Sources */,
|
|
709
|
+
4E0EF63328CA2FB3005D1B03 /* JMCallKitEmitter.m in Sources */,
|
|
710
|
+
DE9A015E289A9A9A00E41CBB /* JitsiMeetView.m in Sources */,
|
|
711
|
+
DE9A015F289A9A9A00E41CBB /* JitsiMeet.m in Sources */,
|
|
712
|
+
);
|
|
713
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
714
|
+
};
|
|
715
|
+
/* End PBXSourcesBuildPhase section */
|
|
716
|
+
|
|
717
|
+
/* Begin XCBuildConfiguration section */
|
|
718
|
+
0BD906EB1EC0C00300C8C18E /* Debug */ = {
|
|
719
|
+
isa = XCBuildConfiguration;
|
|
720
|
+
buildSettings = {
|
|
721
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
722
|
+
CC = "";
|
|
723
|
+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
724
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
725
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
726
|
+
CLANG_CXX_LANGUAGE_STANDARD = "c++20";
|
|
727
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
728
|
+
CLANG_ENABLE_MODULES = YES;
|
|
729
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
730
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
731
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
732
|
+
CLANG_WARN_COMMA = YES;
|
|
733
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
734
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
735
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
736
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
737
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
738
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
739
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
740
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
741
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
742
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
743
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
744
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
745
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
746
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
747
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
748
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
749
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
750
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
751
|
+
COPY_PHASE_STRIP = NO;
|
|
752
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
753
|
+
CXX = "";
|
|
754
|
+
DEBUG_INFORMATION_FORMAT = dwarf;
|
|
755
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
756
|
+
ENABLE_TESTABILITY = YES;
|
|
757
|
+
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
|
|
758
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
759
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
760
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
761
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
762
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
763
|
+
"DEBUG=1",
|
|
764
|
+
"$(inherited)",
|
|
765
|
+
_LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION,
|
|
766
|
+
);
|
|
767
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
768
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
769
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
770
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
771
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
772
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
773
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
774
|
+
LD = "";
|
|
775
|
+
LDPLUSPLUS = "";
|
|
776
|
+
MTL_ENABLE_DEBUG_INFO = YES;
|
|
777
|
+
ONLY_ACTIVE_ARCH = YES;
|
|
778
|
+
OTHER_CFLAGS = "$(inherited)";
|
|
779
|
+
OTHER_CPLUSPLUSFLAGS = "$(inherited)";
|
|
780
|
+
OTHER_LDFLAGS = "$(inherited)";
|
|
781
|
+
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
|
|
782
|
+
SDKROOT = iphoneos;
|
|
783
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG";
|
|
784
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
785
|
+
USE_HERMES = true;
|
|
786
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
787
|
+
VERSION_INFO_PREFIX = "";
|
|
788
|
+
};
|
|
789
|
+
name = Debug;
|
|
790
|
+
};
|
|
791
|
+
0BD906EC1EC0C00300C8C18E /* Release */ = {
|
|
792
|
+
isa = XCBuildConfiguration;
|
|
793
|
+
buildSettings = {
|
|
794
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
795
|
+
CC = "";
|
|
796
|
+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
797
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
798
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
799
|
+
CLANG_CXX_LANGUAGE_STANDARD = "c++20";
|
|
800
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
801
|
+
CLANG_ENABLE_MODULES = YES;
|
|
802
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
803
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
804
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
805
|
+
CLANG_WARN_COMMA = YES;
|
|
806
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
807
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
808
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
809
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
810
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
811
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
812
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
813
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
814
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
815
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
816
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
817
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
818
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
819
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
820
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
821
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
822
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
823
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
824
|
+
COPY_PHASE_STRIP = NO;
|
|
825
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
826
|
+
CXX = "";
|
|
827
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
828
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
829
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
830
|
+
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
|
|
831
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
832
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
833
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
834
|
+
"$(inherited)",
|
|
835
|
+
_LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION,
|
|
836
|
+
);
|
|
837
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
838
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
839
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
840
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
841
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
842
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
843
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
844
|
+
LD = "";
|
|
845
|
+
LDPLUSPLUS = "";
|
|
846
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
847
|
+
OTHER_CFLAGS = "$(inherited)";
|
|
848
|
+
OTHER_CPLUSPLUSFLAGS = "$(inherited)";
|
|
849
|
+
OTHER_LDFLAGS = "$(inherited)";
|
|
850
|
+
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
|
|
851
|
+
SDKROOT = iphoneos;
|
|
852
|
+
SWIFT_COMPILATION_MODE = wholemodule;
|
|
853
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
854
|
+
USE_HERMES = true;
|
|
855
|
+
VALIDATE_PRODUCT = YES;
|
|
856
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
857
|
+
VERSION_INFO_PREFIX = "";
|
|
858
|
+
};
|
|
859
|
+
name = Release;
|
|
860
|
+
};
|
|
861
|
+
0BD906EE1EC0C00300C8C18E /* Debug */ = {
|
|
862
|
+
isa = XCBuildConfiguration;
|
|
863
|
+
baseConfigurationReference = 09A78016288AF50ACD28A10D /* Pods-JitsiMeetSDK.debug.xcconfig */;
|
|
864
|
+
buildSettings = {
|
|
865
|
+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
|
|
866
|
+
CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
|
|
867
|
+
CLANG_ENABLE_MODULES = YES;
|
|
868
|
+
CODE_SIGN_IDENTITY = "";
|
|
869
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
|
|
870
|
+
DEFINES_MODULE = YES;
|
|
871
|
+
DEVELOPMENT_TEAM = "";
|
|
872
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
|
873
|
+
DYLIB_CURRENT_VERSION = 1;
|
|
874
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
|
875
|
+
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
|
|
876
|
+
INFOPLIST_FILE = src/Info.plist;
|
|
877
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
878
|
+
"$(inherited)",
|
|
879
|
+
"@executable_path/Frameworks",
|
|
880
|
+
"@loader_path/Frameworks",
|
|
881
|
+
);
|
|
882
|
+
PRODUCT_BUNDLE_IDENTIFIER = org.jitsi.JitsiMeetSDK.ios;
|
|
883
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
884
|
+
PROVISIONING_PROFILE_SPECIFIER = "";
|
|
885
|
+
SKIP_INSTALL = YES;
|
|
886
|
+
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
|
887
|
+
SUPPORTS_MACCATALYST = NO;
|
|
888
|
+
SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
|
|
889
|
+
SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO;
|
|
890
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
891
|
+
SWIFT_VERSION = 5.0;
|
|
892
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
893
|
+
};
|
|
894
|
+
name = Debug;
|
|
895
|
+
};
|
|
896
|
+
0BD906EF1EC0C00300C8C18E /* Release */ = {
|
|
897
|
+
isa = XCBuildConfiguration;
|
|
898
|
+
baseConfigurationReference = 891FE43DAD30BC8976683100 /* Pods-JitsiMeetSDK.release.xcconfig */;
|
|
899
|
+
buildSettings = {
|
|
900
|
+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
|
|
901
|
+
CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
|
|
902
|
+
CLANG_ENABLE_MODULES = YES;
|
|
903
|
+
CODE_SIGN_IDENTITY = "";
|
|
904
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
|
|
905
|
+
DEFINES_MODULE = YES;
|
|
906
|
+
DEVELOPMENT_TEAM = "";
|
|
907
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
|
908
|
+
DYLIB_CURRENT_VERSION = 1;
|
|
909
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
|
910
|
+
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
|
|
911
|
+
INFOPLIST_FILE = src/Info.plist;
|
|
912
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
913
|
+
"$(inherited)",
|
|
914
|
+
"@executable_path/Frameworks",
|
|
915
|
+
"@loader_path/Frameworks",
|
|
916
|
+
);
|
|
917
|
+
PRODUCT_BUNDLE_IDENTIFIER = org.jitsi.JitsiMeetSDK.ios;
|
|
918
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
919
|
+
PROVISIONING_PROFILE_SPECIFIER = "";
|
|
920
|
+
SKIP_INSTALL = YES;
|
|
921
|
+
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
|
922
|
+
SUPPORTS_MACCATALYST = NO;
|
|
923
|
+
SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
|
|
924
|
+
SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO;
|
|
925
|
+
SWIFT_VERSION = 5.0;
|
|
926
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
927
|
+
};
|
|
928
|
+
name = Release;
|
|
929
|
+
};
|
|
930
|
+
DE9A016D289A9A9A00E41CBB /* Debug */ = {
|
|
931
|
+
isa = XCBuildConfiguration;
|
|
932
|
+
baseConfigurationReference = 8F48C340DE0D91D1012976C5 /* Pods-JitsiMeetSDKLite.debug.xcconfig */;
|
|
933
|
+
buildSettings = {
|
|
934
|
+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
|
|
935
|
+
CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
|
|
936
|
+
CLANG_ENABLE_MODULES = YES;
|
|
937
|
+
CODE_SIGN_IDENTITY = "";
|
|
938
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
|
|
939
|
+
DEFINES_MODULE = YES;
|
|
940
|
+
DEVELOPMENT_TEAM = "";
|
|
941
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
|
942
|
+
DYLIB_CURRENT_VERSION = 1;
|
|
943
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
|
944
|
+
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
|
|
945
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
946
|
+
"$(inherited)",
|
|
947
|
+
"COCOAPODS=1",
|
|
948
|
+
"JITSI_MEET_SDK_LITE=1",
|
|
949
|
+
);
|
|
950
|
+
INFOPLIST_FILE = "src/Lite-Info.plist";
|
|
951
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
952
|
+
"$(inherited)",
|
|
953
|
+
"@executable_path/Frameworks",
|
|
954
|
+
"@loader_path/Frameworks",
|
|
955
|
+
);
|
|
956
|
+
PRODUCT_BUNDLE_IDENTIFIER = org.jitsi.JitsiMeetSDK.ios;
|
|
957
|
+
PRODUCT_NAME = JitsiMeetSDK;
|
|
958
|
+
PROVISIONING_PROFILE_SPECIFIER = "";
|
|
959
|
+
SKIP_INSTALL = YES;
|
|
960
|
+
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
|
961
|
+
SUPPORTS_MACCATALYST = NO;
|
|
962
|
+
SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
|
|
963
|
+
SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO;
|
|
964
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
965
|
+
SWIFT_VERSION = 5.0;
|
|
966
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
967
|
+
};
|
|
968
|
+
name = Debug;
|
|
969
|
+
};
|
|
970
|
+
DE9A016E289A9A9A00E41CBB /* Release */ = {
|
|
971
|
+
isa = XCBuildConfiguration;
|
|
972
|
+
baseConfigurationReference = 86389F55993FAAF6AEB3FA3E /* Pods-JitsiMeetSDKLite.release.xcconfig */;
|
|
973
|
+
buildSettings = {
|
|
974
|
+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
|
|
975
|
+
CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
|
|
976
|
+
CLANG_ENABLE_MODULES = YES;
|
|
977
|
+
CODE_SIGN_IDENTITY = "";
|
|
978
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
|
|
979
|
+
DEFINES_MODULE = YES;
|
|
980
|
+
DEVELOPMENT_TEAM = "";
|
|
981
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
|
982
|
+
DYLIB_CURRENT_VERSION = 1;
|
|
983
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
|
984
|
+
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
|
|
985
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
986
|
+
"$(inherited)",
|
|
987
|
+
"COCOAPODS=1",
|
|
988
|
+
JITSI_MEET_SDK_LITE,
|
|
989
|
+
);
|
|
990
|
+
INFOPLIST_FILE = "src/Lite-Info.plist";
|
|
991
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
992
|
+
"$(inherited)",
|
|
993
|
+
"@executable_path/Frameworks",
|
|
994
|
+
"@loader_path/Frameworks",
|
|
995
|
+
);
|
|
996
|
+
PRODUCT_BUNDLE_IDENTIFIER = org.jitsi.JitsiMeetSDK.ios;
|
|
997
|
+
PRODUCT_NAME = JitsiMeetSDK;
|
|
998
|
+
PROVISIONING_PROFILE_SPECIFIER = "";
|
|
999
|
+
SKIP_INSTALL = YES;
|
|
1000
|
+
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
|
1001
|
+
SUPPORTS_MACCATALYST = NO;
|
|
1002
|
+
SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
|
|
1003
|
+
SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO;
|
|
1004
|
+
SWIFT_VERSION = 5.0;
|
|
1005
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
1006
|
+
};
|
|
1007
|
+
name = Release;
|
|
1008
|
+
};
|
|
1009
|
+
/* End XCBuildConfiguration section */
|
|
1010
|
+
|
|
1011
|
+
/* Begin XCConfigurationList section */
|
|
1012
|
+
0BD906DF1EC0C00300C8C18E /* Build configuration list for PBXProject "sdk" */ = {
|
|
1013
|
+
isa = XCConfigurationList;
|
|
1014
|
+
buildConfigurations = (
|
|
1015
|
+
0BD906EB1EC0C00300C8C18E /* Debug */,
|
|
1016
|
+
0BD906EC1EC0C00300C8C18E /* Release */,
|
|
1017
|
+
);
|
|
1018
|
+
defaultConfigurationIsVisible = 0;
|
|
1019
|
+
defaultConfigurationName = Release;
|
|
1020
|
+
};
|
|
1021
|
+
0BD906ED1EC0C00300C8C18E /* Build configuration list for PBXNativeTarget "JitsiMeetSDK" */ = {
|
|
1022
|
+
isa = XCConfigurationList;
|
|
1023
|
+
buildConfigurations = (
|
|
1024
|
+
0BD906EE1EC0C00300C8C18E /* Debug */,
|
|
1025
|
+
0BD906EF1EC0C00300C8C18E /* Release */,
|
|
1026
|
+
);
|
|
1027
|
+
defaultConfigurationIsVisible = 0;
|
|
1028
|
+
defaultConfigurationName = Release;
|
|
1029
|
+
};
|
|
1030
|
+
DE9A016C289A9A9A00E41CBB /* Build configuration list for PBXNativeTarget "JitsiMeetSDKLite" */ = {
|
|
1031
|
+
isa = XCConfigurationList;
|
|
1032
|
+
buildConfigurations = (
|
|
1033
|
+
DE9A016D289A9A9A00E41CBB /* Debug */,
|
|
1034
|
+
DE9A016E289A9A9A00E41CBB /* Release */,
|
|
1035
|
+
);
|
|
1036
|
+
defaultConfigurationIsVisible = 0;
|
|
1037
|
+
defaultConfigurationName = Release;
|
|
1038
|
+
};
|
|
1039
|
+
/* End XCConfigurationList section */
|
|
1040
|
+
};
|
|
1041
|
+
rootObject = 0BD906DC1EC0C00300C8C18E /* Project object */;
|
|
1042
|
+
}
|