agora-appbuilder-core 4.0.0-api.7 → 4.0.0-api.9

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.
Files changed (97) hide show
  1. package/package.json +3 -3
  2. package/template/_package-lock.json +5911 -4861
  3. package/template/agora-rn-uikit/.eslintrc.js +5 -0
  4. package/template/agora-rn-uikit/package.json +14 -14
  5. package/template/agora-rn-uikit/src/Contexts/PropsContext.tsx +41 -22
  6. package/template/agora-rn-uikit/src/Contexts/RtcContext.tsx +2 -2
  7. package/template/agora-rn-uikit/src/Rtc/Create.tsx +90 -57
  8. package/template/agora-rn-uikit/src/Rtc/Join.tsx +20 -16
  9. package/template/agora-rn-uikit/src/RtcConfigure.tsx +10 -10
  10. package/template/agora-rn-uikit/src/Utils/isBotUser.ts +15 -0
  11. package/template/agora-rn-uikit/src/Utils/quality.tsx +8 -0
  12. package/template/agora-rn-uikit/src/Views/MaxVideoView.native.tsx +32 -16
  13. package/template/agora-rn-uikit/src/Views/MaxVideoView.tsx +25 -14
  14. package/template/agora-rn-uikit/src/Views/MinVideoView.tsx +15 -9
  15. package/template/agora-rn-uikit/src/index.ts +1 -1
  16. package/template/bridge/rtc/webNg/RtcEngine.ts +73 -58
  17. package/template/bridge/rtc/webNg/{SurfaceView.tsx → RtcSurfaceView.tsx} +20 -26
  18. package/template/bridge/rtc/webNg/Types.ts +20 -5
  19. package/template/bridge/rtc/webNg/index.ts +9 -13
  20. package/template/customization-api/temp.ts +2 -2
  21. package/template/customization-api/typeDefinition.ts +1 -2
  22. package/template/customization-api/utils.ts +1 -2
  23. package/template/index.js +1 -0
  24. package/template/ios/HelloWorld/HelloWorldDebug.entitlements +10 -0
  25. package/template/ios/HelloWorld.xcodeproj/project.pbxproj +4 -0
  26. package/template/ios/Podfile +1 -1
  27. package/template/ios/Podfile.lock +72 -140
  28. package/template/package.json +5 -4
  29. package/template/src/App.tsx +58 -1
  30. package/template/src/AppRoutes.tsx +16 -3
  31. package/template/src/AppWrapper.tsx +21 -19
  32. package/template/src/components/Chat.tsx +17 -8
  33. package/template/src/components/ChatContext.ts +0 -2
  34. package/template/src/components/Controls.tsx +5 -5
  35. package/template/src/components/Controls1.native.tsx +7 -3
  36. package/template/src/components/DeviceConfigure.native.tsx +2 -2
  37. package/template/src/components/DeviceConfigure.tsx +2 -2
  38. package/template/src/components/EventsConfigure.tsx +13 -22
  39. package/template/src/components/GraphQLProvider.tsx +47 -30
  40. package/template/src/components/GridVideo.tsx +6 -2
  41. package/template/src/components/NetworkQualityContext.tsx +11 -5
  42. package/template/src/components/ParticipantsView.tsx +3 -3
  43. package/template/src/components/PinnedVideo.tsx +2 -2
  44. package/template/src/components/Precall.native.tsx +9 -6
  45. package/template/src/components/Precall.tsx +9 -6
  46. package/template/src/components/StorageContext.tsx +5 -2
  47. package/template/src/components/ToastComponent.tsx +7 -1
  48. package/template/src/components/contexts/LiveStreamDataContext.tsx +3 -3
  49. package/template/src/components/livestream/LiveStreamContext.tsx +42 -33
  50. package/template/src/components/livestream/Types.ts +2 -2
  51. package/template/src/components/participants/Participant.tsx +1 -1
  52. package/template/src/components/participants/UserActionMenuOptions.tsx +7 -2
  53. package/template/src/components/recording-bot/RecordingBotRoute.tsx +42 -0
  54. package/template/src/components/virtual-background/useVB.native.tsx +16 -19
  55. package/template/src/components/virtual-background/useVB.tsx +1 -1
  56. package/template/src/components/whiteboard/WhiteboardConfigure.native.tsx +11 -0
  57. package/template/src/components/whiteboard/WhiteboardConfigure.tsx +5 -0
  58. package/template/src/components/whiteboard/WhiteboardView.native.tsx +91 -12
  59. package/template/src/components/whiteboard/WhiteboardWidget.tsx +15 -4
  60. package/template/src/language/default-labels/precallScreenLabels.ts +5 -3
  61. package/template/src/language/default-labels/videoCallScreenLabels.ts +93 -41
  62. package/template/src/pages/VideoCall.tsx +39 -37
  63. package/template/src/pages/video-call/ActionSheetContent.tsx +4 -3
  64. package/template/src/pages/video-call/NameWithMicIcon.tsx +2 -1
  65. package/template/src/pages/video-call/VideoCallMobileView.tsx +26 -2
  66. package/template/src/pages/video-call/VideoCallScreen.tsx +32 -12
  67. package/template/src/pages/video-call/VideoCallScreenWrapper.tsx +41 -0
  68. package/template/src/pages/video-call/VideoComponent.tsx +5 -2
  69. package/template/src/pages/video-call/VideoRenderer.tsx +55 -34
  70. package/template/src/rtm-events/constants.ts +0 -2
  71. package/template/src/subComponents/ChatBubble.tsx +2 -0
  72. package/template/src/subComponents/LocalAudioMute.tsx +8 -47
  73. package/template/src/subComponents/LocalEndCall.tsx +5 -52
  74. package/template/src/subComponents/LocalSwitchCamera.tsx +3 -3
  75. package/template/src/subComponents/LocalVideoMute.tsx +8 -50
  76. package/template/src/subComponents/SelectDevice.tsx +5 -2
  77. package/template/src/subComponents/SelectDeviceSettings.backup.tsx +9 -6
  78. package/template/src/subComponents/caption/Caption.tsx +12 -10
  79. package/template/src/subComponents/caption/Transcript.tsx +13 -10
  80. package/template/src/subComponents/caption/useTranscriptDownload.native.ts +11 -16
  81. package/template/src/subComponents/caption/utils.ts +1 -0
  82. package/template/src/subComponents/livestream/ApprovedLiveStreamControlsView.tsx +2 -2
  83. package/template/src/subComponents/livestream/CurrentLiveStreamRequestsView.tsx +3 -2
  84. package/template/src/subComponents/livestream/controls/LocalRaiseHand.tsx +1 -1
  85. package/template/src/subComponents/recording/useIsRecordingBot.tsx +38 -0
  86. package/template/src/subComponents/recording/useRecording.tsx +176 -135
  87. package/template/src/subComponents/screenshare/ScreenshareButton.tsx +3 -3
  88. package/template/src/subComponents/screenshare/ScreenshareConfigure.tsx +1 -22
  89. package/template/src/utils/index.tsx +16 -5
  90. package/template/src/utils/useEndCall.ts +65 -0
  91. package/template/src/utils/useIsLocalUserSpeaking.ts +6 -1
  92. package/template/{bridge/rtc/webNg/LocalView.tsx → src/utils/useLocalAudio.ts} +24 -6
  93. package/template/src/utils/useMuteToggleLocal.ts +10 -5
  94. package/template/src/utils/useSearchParams.tsx +18 -0
  95. package/template/src/wasms/agora-virtual-background.wasm +0 -0
  96. package/template/src/utils/endCallEveryOne.ts +0 -7
  97. package/template/src/utils/useDisableButton.tsx +0 -37
@@ -13,57 +13,51 @@
13
13
  import {ILocalVideoTrack, IRemoteVideoTrack} from 'agora-rtc-sdk-ng';
14
14
  import React, {useEffect} from 'react';
15
15
  import {StyleProp, StyleSheet, ViewProps, ViewStyle} from 'react-native';
16
- import {VideoMirrorMode, VideoRenderMode} from 'react-native-agora';
16
+ import {RenderModeType} from './Types';
17
17
 
18
18
  export interface RtcSurfaceViewProps extends ViewProps {
19
- zOrderMediaOverlay?: boolean;
20
- zOrderOnTop?: boolean;
21
- renderMode?: any;
22
- channelId?: string;
23
- mirrorMode?: any;
24
- }
25
- export interface RtcUidProps {
26
- uid: number;
19
+ canvas: {
20
+ renderMode?: RenderModeType;
21
+ uid?: number;
22
+ };
27
23
  }
24
+
28
25
  export interface StyleProps {
29
26
  style?: StyleProp<ViewStyle>;
30
27
  }
31
28
 
32
- interface SurfaceViewInterface
33
- extends RtcSurfaceViewProps,
34
- RtcUidProps,
35
- StyleProps {}
36
-
37
- const SurfaceView = (props: SurfaceViewInterface) => {
38
- // console.log('Surface View props', props);
29
+ interface SurfaceViewInterface extends RtcSurfaceViewProps, StyleProps {}
39
30
 
31
+ const RtcSurfaceView = (props: SurfaceViewInterface) => {
32
+ console.log('Rtc Surface View props', props);
33
+ const {uid, renderMode} = props.canvas;
40
34
  const stream: ILocalVideoTrack | IRemoteVideoTrack =
41
- props.uid === 0
35
+ uid === 0
42
36
  ? window.engine.localStream.video
43
- : props.uid === 1
37
+ : uid === 1
44
38
  ? window.engine.screenStream.video
45
- : window.engine.remoteStreams.get(props.uid)?.video;
39
+ : window.engine.remoteStreams.get(uid)?.video;
46
40
  // console.log(props, window.engine, stream);
47
41
  useEffect(
48
42
  function () {
49
43
  if (stream?.play) {
50
- if (props.renderMode === 2) {
51
- stream.play(String(props.uid), {fit: 'contain'});
44
+ if (renderMode === RenderModeType.RenderModeFit) {
45
+ stream.play(String(uid), {fit: 'contain'});
52
46
  } else {
53
- stream.play(String(props.uid));
47
+ stream.play(String(uid));
54
48
  }
55
49
  }
56
50
  return () => {
57
- console.log(`unmounting stream ${props.uid}`, stream);
51
+ console.log(`unmounting stream ${uid}`, stream);
58
52
  stream && stream.stop();
59
53
  };
60
54
  },
61
- [props.uid, props.renderMode, stream],
55
+ [uid, renderMode, stream],
62
56
  );
63
57
 
64
58
  return stream ? (
65
59
  <div
66
- id={String(props.uid)}
60
+ id={String(uid)}
67
61
  className={'video-container'}
68
62
  style={{...style.full, ...(props.style as Object), overflow: 'hidden'}}
69
63
  />
@@ -78,4 +72,4 @@ const style = StyleSheet.create({
78
72
  },
79
73
  });
80
74
 
81
- export default SurfaceView;
75
+ export default RtcSurfaceView;
@@ -9,11 +9,26 @@
9
9
  information visit https://appbuilder.agora.io.
10
10
  *********************************************
11
11
  */
12
- export enum VideoRenderMode {
13
- Hidden = 1,
14
- Fit,
15
- Adaptive,
12
+
13
+ export interface RtcEngineContext {
14
+ appId?: string;
16
15
  }
16
+
17
+ export enum RenderModeType {
18
+ /**
19
+ * 1: Hidden mode. Uniformly scale the video until one of its dimension fits the boundary (zoomed to fit). One dimension of the video may have clipped contents.
20
+ */
21
+ RenderModeHidden = 1,
22
+ /**
23
+ * 2: Fit mode. Uniformly scale the video until one of its dimension fits the boundary (zoomed to fit). Areas that are not filled due to disparity in the aspect ratio are filled with black.
24
+ */
25
+ RenderModeFit = 2,
26
+ /**
27
+ * @ignore
28
+ */
29
+ RenderModeAdaptive = 3,
30
+ }
31
+
17
32
  export enum VideoMirrorMode {
18
33
  /**
19
34
  * 0: (Default) The SDK determines the mirror mode.
@@ -26,7 +41,7 @@ export enum VideoMirrorMode {
26
41
  /**
27
42
  * 2: Disables mirror mode.
28
43
  */
29
- Disabled = 2
44
+ Disabled = 2,
30
45
  }
31
46
  /**
32
47
  *
@@ -10,22 +10,18 @@
10
10
  *********************************************
11
11
  */
12
12
  import RtcEngine from './RtcEngine';
13
- import SurfaceView from './SurfaceView';
14
- import LocalView from './LocalView';
15
- import * as Types from './Types';
13
+ export {default as RtcSurfaceView} from './RtcSurfaceView';
16
14
 
17
- export const RtcLocalView = {
18
- SurfaceView: LocalView,
19
- TextureView: LocalView,
20
- };
15
+ import * as Types from './Types';
21
16
 
22
- export const RtcRemoteView = {
23
- SurfaceView: SurfaceView as any,
24
- TextureView: SurfaceView as any,
25
- };
17
+ export const VideoMirrorMode = {...Types.RenderModeType};
18
+ export const RenderModeType = {...Types.RenderModeType};
26
19
 
27
- export const VideoRenderMode = {...Types.VideoRenderMode};
28
- export const VideoMirrorMode = {...Types.VideoRenderMode};
20
+ export function createAgoraRtcEngine() {
21
+ let engine = new RtcEngine();
22
+ window.engine = engine;
23
+ return engine;
24
+ }
29
25
 
30
26
  export {RnEncryptionEnum as EncryptionMode} from './RtcEngine';
31
27
  export {AREAS as AreaCode} from './RtcEngine';
@@ -23,8 +23,8 @@ import {useToggleWhiteboard} from '../src/components/Controls';
23
23
  import {ShowInputURL} from '../src/components/Share';
24
24
  import useRemoteMute, {MUTE_REMOTE_TYPE} from '../src/utils/useRemoteMute';
25
25
  import getCustomRoute from '../src/utils/getCustomRoute';
26
- import endCallEveryOne from '../src/utils/endCallEveryOne';
27
26
  import TertiaryButton from '../src/atoms/TertiaryButton';
27
+ import useEndCall from '../src/utils/useEndCall';
28
28
  export {
29
29
  VideoRenderer,
30
30
  DispatchContext,
@@ -47,6 +47,6 @@ export {
47
47
  useRemoteMute,
48
48
  MUTE_REMOTE_TYPE,
49
49
  getCustomRoute,
50
- endCallEveryOne,
51
50
  TertiaryButton,
51
+ useEndCall,
52
52
  };
@@ -103,8 +103,7 @@ export interface CustomRoutesInterface {
103
103
  export type CustomHookType = () => () => Promise<void>;
104
104
  export type EndCallHookType = () => (
105
105
  isHost: boolean,
106
- history?: any,
107
- isTriggeredByHost?: boolean,
106
+ history: History,
108
107
  ) => Promise<void>;
109
108
 
110
109
  export interface CustomizationApiInterface {
@@ -31,5 +31,4 @@ export {useHistory, useParams} from '../src/components/Router';
31
31
  export {isWeb, isIOS, isAndroid, isDesktop} from '../src/utils/common';
32
32
  export {default as isMobileOrTablet} from '../src/utils/isMobileOrTablet';
33
33
  export {useLocalUid} from '../agora-rn-uikit';
34
-
35
- export {default as useDisableButton} from '../src/utils/useDisableButton';
34
+ export {default as useLocalAudio} from '../src/utils/useLocalAudio';
package/template/index.js CHANGED
@@ -14,6 +14,7 @@
14
14
  */
15
15
 
16
16
  import {AppRegistry} from 'react-native';
17
+ import 'react-native-url-polyfill/auto';
17
18
  import App from './src/App';
18
19
  import {name as appName} from './app.json';
19
20
 
@@ -0,0 +1,10 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>com.apple.developer.associated-domains</key>
6
+ <array>
7
+ <string>applinks:FRONTEND_ENDPOINT_BASE</string>
8
+ </array>
9
+ </dict>
10
+ </plist>
@@ -570,6 +570,7 @@
570
570
  "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf",
571
571
  "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Zocial.ttf",
572
572
  "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle",
573
+ "${PODS_CONFIGURATION_BUILD_DIR}/react-native-whiteboard/Whiteboard.bundle",
573
574
  );
574
575
  name = "[CP] Copy Pods Resources";
575
576
  outputPaths = (
@@ -591,6 +592,7 @@
591
592
  "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SimpleLineIcons.ttf",
592
593
  "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Zocial.ttf",
593
594
  "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle",
595
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Whiteboard.bundle",
594
596
  );
595
597
  runOnlyForDeploymentPostprocessing = 0;
596
598
  shellPath = /bin/sh;
@@ -722,6 +724,7 @@
722
724
  "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf",
723
725
  "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Zocial.ttf",
724
726
  "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle",
727
+ "${PODS_CONFIGURATION_BUILD_DIR}/react-native-whiteboard/Whiteboard.bundle",
725
728
  );
726
729
  name = "[CP] Copy Pods Resources";
727
730
  outputPaths = (
@@ -743,6 +746,7 @@
743
746
  "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SimpleLineIcons.ttf",
744
747
  "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Zocial.ttf",
745
748
  "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle",
749
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Whiteboard.bundle",
746
750
  );
747
751
  runOnlyForDeploymentPostprocessing = 0;
748
752
  shellPath = /bin/sh;
@@ -62,5 +62,5 @@ target 'HelloWorld' do
62
62
  end
63
63
 
64
64
  target 'ScreenSharing' do
65
- pod 'AgoraRtcEngine_iOS', '3.7.0.3'
65
+ pod 'AgoraRtcEngine_iOS', '4.3.0'
66
66
  end
@@ -2,34 +2,42 @@ PODS:
2
2
  - agora-react-native-rtm (1.5.1):
3
3
  - AgoraRtm_iOS (= 1.5.1)
4
4
  - React-Core
5
- - AgoraRtcEngine_iOS (3.7.0.3):
6
- - AgoraRtcEngine_iOS/AINS (= 3.7.0.3)
7
- - AgoraRtcEngine_iOS/AV1Dec (= 3.7.0.3)
8
- - AgoraRtcEngine_iOS/ContentInspect (= 3.7.0.3)
9
- - AgoraRtcEngine_iOS/FullAudioFormat (= 3.7.0.3)
10
- - AgoraRtcEngine_iOS/ReplayKit (= 3.7.0.3)
11
- - AgoraRtcEngine_iOS/ROIEnc (= 3.7.0.3)
12
- - AgoraRtcEngine_iOS/RtcBasic (= 3.7.0.3)
13
- - AgoraRtcEngine_iOS/SpatialAudio (= 3.7.0.3)
14
- - AgoraRtcEngine_iOS/SuperResolution (= 3.7.0.3)
15
- - AgoraRtcEngine_iOS/VideoPreprocess (= 3.7.0.3)
16
- - AgoraRtcEngine_iOS/VirtualBackground (= 3.7.0.3)
17
- - AgoraRtcEngine_iOS/AINS (3.7.0.3)
18
- - AgoraRtcEngine_iOS/AV1Dec (3.7.0.3)
19
- - AgoraRtcEngine_iOS/ContentInspect (3.7.0.3)
20
- - AgoraRtcEngine_iOS/FullAudioFormat (3.7.0.3)
21
- - AgoraRtcEngine_iOS/ReplayKit (3.7.0.3)
22
- - AgoraRtcEngine_iOS/ROIEnc (3.7.0.3)
23
- - AgoraRtcEngine_iOS/RtcBasic (3.7.0.3)
24
- - AgoraRtcEngine_iOS/SpatialAudio (3.7.0.3)
25
- - AgoraRtcEngine_iOS/SuperResolution (3.7.0.3)
26
- - AgoraRtcEngine_iOS/VideoPreprocess (3.7.0.3)
27
- - AgoraRtcEngine_iOS/VirtualBackground (3.7.0.3)
28
- - AgoraRtcEngine_Special_iOS (3.7.2.4)
5
+ - AgoraIrisRTC_iOS (4.2.6.3-build.1)
6
+ - AgoraRtcEngine_iOS (4.3.0):
7
+ - AgoraRtcEngine_iOS/AIAEC (= 4.3.0)
8
+ - AgoraRtcEngine_iOS/AINS (= 4.3.0)
9
+ - AgoraRtcEngine_iOS/AudioBeauty (= 4.3.0)
10
+ - AgoraRtcEngine_iOS/ClearVision (= 4.3.0)
11
+ - AgoraRtcEngine_iOS/ContentInspect (= 4.3.0)
12
+ - AgoraRtcEngine_iOS/FaceCapture (= 4.3.0)
13
+ - AgoraRtcEngine_iOS/FaceDetection (= 4.3.0)
14
+ - AgoraRtcEngine_iOS/ReplayKit (= 4.3.0)
15
+ - AgoraRtcEngine_iOS/RtcBasic (= 4.3.0)
16
+ - AgoraRtcEngine_iOS/SpatialAudio (= 4.3.0)
17
+ - AgoraRtcEngine_iOS/VideoAv1CodecDec (= 4.3.0)
18
+ - AgoraRtcEngine_iOS/VideoCodecDec (= 4.3.0)
19
+ - AgoraRtcEngine_iOS/VideoCodecEnc (= 4.3.0)
20
+ - AgoraRtcEngine_iOS/VirtualBackground (= 4.3.0)
21
+ - AgoraRtcEngine_iOS/VQA (= 4.3.0)
22
+ - AgoraRtcEngine_iOS/AIAEC (4.3.0)
23
+ - AgoraRtcEngine_iOS/AINS (4.3.0)
24
+ - AgoraRtcEngine_iOS/AudioBeauty (4.3.0)
25
+ - AgoraRtcEngine_iOS/ClearVision (4.3.0)
26
+ - AgoraRtcEngine_iOS/ContentInspect (4.3.0)
27
+ - AgoraRtcEngine_iOS/FaceCapture (4.3.0)
28
+ - AgoraRtcEngine_iOS/FaceDetection (4.3.0)
29
+ - AgoraRtcEngine_iOS/ReplayKit (4.3.0)
30
+ - AgoraRtcEngine_iOS/RtcBasic (4.3.0)
31
+ - AgoraRtcEngine_iOS/SpatialAudio (4.3.0)
32
+ - AgoraRtcEngine_iOS/VideoAv1CodecDec (4.3.0)
33
+ - AgoraRtcEngine_iOS/VideoCodecDec (4.3.0)
34
+ - AgoraRtcEngine_iOS/VideoCodecEnc (4.3.0)
35
+ - AgoraRtcEngine_iOS/VirtualBackground (4.3.0)
36
+ - AgoraRtcEngine_iOS/VQA (4.3.0)
37
+ - AgoraRtcEngine_Special_iOS (4.2.6.3)
29
38
  - AgoraRtm_iOS (1.5.1)
30
39
  - BEMCheckBox (1.4.1)
31
40
  - boost (1.76.0)
32
- - CocoaAsyncSocket (7.6.5)
33
41
  - DoubleConversion (1.1.6)
34
42
  - FBLazyVector (0.72.4)
35
43
  - FBReactNativeSpec (0.72.4):
@@ -39,64 +47,6 @@ PODS:
39
47
  - React-Core (= 0.72.4)
40
48
  - React-jsi (= 0.72.4)
41
49
  - ReactCommon/turbomodule/core (= 0.72.4)
42
- - Flipper (0.182.0):
43
- - Flipper-Folly (~> 2.6)
44
- - Flipper-Boost-iOSX (1.76.0.1.11)
45
- - Flipper-DoubleConversion (3.2.0.1)
46
- - Flipper-Fmt (7.1.7)
47
- - Flipper-Folly (2.6.10):
48
- - Flipper-Boost-iOSX
49
- - Flipper-DoubleConversion
50
- - Flipper-Fmt (= 7.1.7)
51
- - Flipper-Glog
52
- - libevent (~> 2.1.12)
53
- - OpenSSL-Universal (= 1.1.1100)
54
- - Flipper-Glog (0.5.0.5)
55
- - Flipper-PeerTalk (0.0.4)
56
- - FlipperKit (0.182.0):
57
- - FlipperKit/Core (= 0.182.0)
58
- - FlipperKit/Core (0.182.0):
59
- - Flipper (~> 0.182.0)
60
- - FlipperKit/CppBridge
61
- - FlipperKit/FBCxxFollyDynamicConvert
62
- - FlipperKit/FBDefines
63
- - FlipperKit/FKPortForwarding
64
- - SocketRocket (~> 0.6.0)
65
- - FlipperKit/CppBridge (0.182.0):
66
- - Flipper (~> 0.182.0)
67
- - FlipperKit/FBCxxFollyDynamicConvert (0.182.0):
68
- - Flipper-Folly (~> 2.6)
69
- - FlipperKit/FBDefines (0.182.0)
70
- - FlipperKit/FKPortForwarding (0.182.0):
71
- - CocoaAsyncSocket (~> 7.6)
72
- - Flipper-PeerTalk (~> 0.0.4)
73
- - FlipperKit/FlipperKitHighlightOverlay (0.182.0)
74
- - FlipperKit/FlipperKitLayoutHelpers (0.182.0):
75
- - FlipperKit/Core
76
- - FlipperKit/FlipperKitHighlightOverlay
77
- - FlipperKit/FlipperKitLayoutTextSearchable
78
- - FlipperKit/FlipperKitLayoutIOSDescriptors (0.182.0):
79
- - FlipperKit/Core
80
- - FlipperKit/FlipperKitHighlightOverlay
81
- - FlipperKit/FlipperKitLayoutHelpers
82
- - YogaKit (~> 1.18)
83
- - FlipperKit/FlipperKitLayoutPlugin (0.182.0):
84
- - FlipperKit/Core
85
- - FlipperKit/FlipperKitHighlightOverlay
86
- - FlipperKit/FlipperKitLayoutHelpers
87
- - FlipperKit/FlipperKitLayoutIOSDescriptors
88
- - FlipperKit/FlipperKitLayoutTextSearchable
89
- - YogaKit (~> 1.18)
90
- - FlipperKit/FlipperKitLayoutTextSearchable (0.182.0)
91
- - FlipperKit/FlipperKitNetworkPlugin (0.182.0):
92
- - FlipperKit/Core
93
- - FlipperKit/FlipperKitReactPlugin (0.182.0):
94
- - FlipperKit/Core
95
- - FlipperKit/FlipperKitUserDefaultsPlugin (0.182.0):
96
- - FlipperKit/Core
97
- - FlipperKit/SKIOSNetworkPlugin (0.182.0):
98
- - FlipperKit/Core
99
- - FlipperKit/FlipperKitNetworkPlugin
100
50
  - fmt (6.2.1)
101
51
  - glog (0.3.5)
102
52
  - hermes-engine (0.72.4):
@@ -104,7 +54,6 @@ PODS:
104
54
  - hermes-engine/Pre-built (0.72.4)
105
55
  - IQKeyboardManagerSwift (6.5.4)
106
56
  - libevent (2.1.12)
107
- - OpenSSL-Universal (1.1.1100)
108
57
  - RCT-Folly (2021.07.22.00):
109
58
  - boost
110
59
  - DoubleConversion
@@ -405,11 +354,20 @@ PODS:
405
354
  - React-jsinspector (0.72.4)
406
355
  - React-logger (0.72.4):
407
356
  - glog
408
- - react-native-agora (3.7.2-rc.3):
409
- - AgoraRtcEngine_Special_iOS (= 3.7.2.4)
357
+ - react-native-agora (4.2.6-build.3-rc.1):
358
+ - AgoraIrisRTC_iOS (= 4.2.6.3-build.1)
359
+ - AgoraRtcEngine_Special_iOS (= 4.2.6.3)
360
+ - RCT-Folly (= 2021.07.22.00)
361
+ - React-Core
362
+ - react-native-document-picker (9.1.1):
410
363
  - React-Core
411
364
  - react-native-keep-awake (4.0.0):
412
365
  - React
366
+ - react-native-webview (13.8.1):
367
+ - RCT-Folly (= 2021.07.22.00)
368
+ - React-Core
369
+ - react-native-whiteboard (0.0.14):
370
+ - React-Core
413
371
  - React-NativeModulesApple (0.72.4):
414
372
  - hermes-engine
415
373
  - React-callinvoker
@@ -535,6 +493,8 @@ PODS:
535
493
  - React-Core
536
494
  - RNExitApp (1.1.0):
537
495
  - React
496
+ - RNFS (2.20.0):
497
+ - React-Core
538
498
  - RNGestureHandler (2.8.0):
539
499
  - React-Core
540
500
  - RNInAppBrowser (3.5.1):
@@ -568,7 +528,7 @@ PODS:
568
528
  - React-RCTText
569
529
  - ReactCommon/turbomodule/core
570
530
  - Yoga
571
- - RNShare (7.9.0):
531
+ - RNShare (10.0.2):
572
532
  - React-Core
573
533
  - RNSVG (13.6.0):
574
534
  - React-Core
@@ -576,40 +536,17 @@ PODS:
576
536
  - React-Core
577
537
  - SocketRocket (0.6.1)
578
538
  - Yoga (1.14.0)
579
- - YogaKit (1.18.1):
580
- - Yoga (~> 1.14)
581
539
 
582
540
  DEPENDENCIES:
583
541
  - agora-react-native-rtm (from `../node_modules/agora-react-native-rtm`)
584
- - AgoraRtcEngine_iOS (= 3.7.0.3)
542
+ - AgoraRtcEngine_iOS (= 4.3.0)
585
543
  - boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
586
544
  - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
587
545
  - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
588
546
  - FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`)
589
- - Flipper (= 0.182.0)
590
- - Flipper-Boost-iOSX (= 1.76.0.1.11)
591
- - Flipper-DoubleConversion (= 3.2.0.1)
592
- - Flipper-Fmt (= 7.1.7)
593
- - Flipper-Folly (= 2.6.10)
594
- - Flipper-Glog (= 0.5.0.5)
595
- - Flipper-PeerTalk (= 0.0.4)
596
- - FlipperKit (= 0.182.0)
597
- - FlipperKit/Core (= 0.182.0)
598
- - FlipperKit/CppBridge (= 0.182.0)
599
- - FlipperKit/FBCxxFollyDynamicConvert (= 0.182.0)
600
- - FlipperKit/FBDefines (= 0.182.0)
601
- - FlipperKit/FKPortForwarding (= 0.182.0)
602
- - FlipperKit/FlipperKitHighlightOverlay (= 0.182.0)
603
- - FlipperKit/FlipperKitLayoutPlugin (= 0.182.0)
604
- - FlipperKit/FlipperKitLayoutTextSearchable (= 0.182.0)
605
- - FlipperKit/FlipperKitNetworkPlugin (= 0.182.0)
606
- - FlipperKit/FlipperKitReactPlugin (= 0.182.0)
607
- - FlipperKit/FlipperKitUserDefaultsPlugin (= 0.182.0)
608
- - FlipperKit/SKIOSNetworkPlugin (= 0.182.0)
609
547
  - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
610
548
  - hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`)
611
549
  - libevent (~> 2.1.12)
612
- - OpenSSL-Universal (= 1.1.1100)
613
550
  - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
614
551
  - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
615
552
  - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
@@ -617,7 +554,6 @@ DEPENDENCIES:
617
554
  - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
618
555
  - React-Codegen (from `build/generated/ios`)
619
556
  - React-Core (from `../node_modules/react-native/`)
620
- - React-Core/DevSupport (from `../node_modules/react-native/`)
621
557
  - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
622
558
  - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
623
559
  - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
@@ -628,7 +564,10 @@ DEPENDENCIES:
628
564
  - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
629
565
  - React-logger (from `../node_modules/react-native/ReactCommon/logger`)
630
566
  - react-native-agora (from `../node_modules/react-native-agora`)
567
+ - react-native-document-picker (from `../node_modules/react-native-document-picker`)
631
568
  - react-native-keep-awake (from `../node_modules/react-native-keep-awake`)
569
+ - react-native-webview (from `../node_modules/react-native-webview`)
570
+ - "react-native-whiteboard (from `../node_modules/@netless/react-native-whiteboard`)"
632
571
  - React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
633
572
  - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
634
573
  - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
@@ -652,6 +591,7 @@ DEPENDENCIES:
652
591
  - "RNCCheckbox (from `../node_modules/@react-native-community/checkbox`)"
653
592
  - "RNCClipboard (from `../node_modules/@react-native-community/clipboard`)"
654
593
  - RNExitApp (from `../node_modules/react-native-exit-app`)
594
+ - RNFS (from `../node_modules/react-native-fs`)
655
595
  - RNGestureHandler (from `../node_modules/react-native-gesture-handler`)
656
596
  - RNInAppBrowser (from `../node_modules/react-native-inappbrowser-reborn`)
657
597
  - RNReanimated (from `../node_modules/react-native-reanimated`)
@@ -662,25 +602,15 @@ DEPENDENCIES:
662
602
 
663
603
  SPEC REPOS:
664
604
  trunk:
605
+ - AgoraIrisRTC_iOS
665
606
  - AgoraRtcEngine_iOS
666
607
  - AgoraRtcEngine_Special_iOS
667
608
  - AgoraRtm_iOS
668
609
  - BEMCheckBox
669
- - CocoaAsyncSocket
670
- - Flipper
671
- - Flipper-Boost-iOSX
672
- - Flipper-DoubleConversion
673
- - Flipper-Fmt
674
- - Flipper-Folly
675
- - Flipper-Glog
676
- - Flipper-PeerTalk
677
- - FlipperKit
678
610
  - fmt
679
611
  - IQKeyboardManagerSwift
680
612
  - libevent
681
- - OpenSSL-Universal
682
613
  - SocketRocket
683
- - YogaKit
684
614
 
685
615
  EXTERNAL SOURCES:
686
616
  agora-react-native-rtm:
@@ -730,8 +660,14 @@ EXTERNAL SOURCES:
730
660
  :path: "../node_modules/react-native/ReactCommon/logger"
731
661
  react-native-agora:
732
662
  :path: "../node_modules/react-native-agora"
663
+ react-native-document-picker:
664
+ :path: "../node_modules/react-native-document-picker"
733
665
  react-native-keep-awake:
734
666
  :path: "../node_modules/react-native-keep-awake"
667
+ react-native-webview:
668
+ :path: "../node_modules/react-native-webview"
669
+ react-native-whiteboard:
670
+ :path: "../node_modules/@netless/react-native-whiteboard"
735
671
  React-NativeModulesApple:
736
672
  :path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"
737
673
  React-perflogger:
@@ -778,6 +714,8 @@ EXTERNAL SOURCES:
778
714
  :path: "../node_modules/@react-native-community/clipboard"
779
715
  RNExitApp:
780
716
  :path: "../node_modules/react-native-exit-app"
717
+ RNFS:
718
+ :path: "../node_modules/react-native-fs"
781
719
  RNGestureHandler:
782
720
  :path: "../node_modules/react-native-gesture-handler"
783
721
  RNInAppBrowser:
@@ -795,29 +733,20 @@ EXTERNAL SOURCES:
795
733
 
796
734
  SPEC CHECKSUMS:
797
735
  agora-react-native-rtm: 20cd594088d33caa46c75f2d079efbac62848cec
798
- AgoraRtcEngine_iOS: 549bb3853d5afb18fabca4197786f39f31141da8
799
- AgoraRtcEngine_Special_iOS: 0ebb16a61343394538886b048ffced6b5497673a
736
+ AgoraIrisRTC_iOS: ee4eab41999febb67bc21539741b95d9577725a9
737
+ AgoraRtcEngine_iOS: 267c0980c1fb97e056d05b850f8629b05b6e467a
738
+ AgoraRtcEngine_Special_iOS: 3b515beaee084fc27a8cac8415fc346d609af269
800
739
  AgoraRtm_iOS: 595a9fa33a409831e6183396ea8f8bc563918403
801
740
  BEMCheckBox: 5ba6e37ade3d3657b36caecc35c8b75c6c2b1a4e
802
741
  boost: 57d2868c099736d80fcd648bf211b4431e51a558
803
- CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99
804
742
  DoubleConversion: 5189b271737e1565bdce30deb4a08d647e3f5f54
805
743
  FBLazyVector: 5d4a3b7f411219a45a6d952f77d2c0a6c9989da5
806
744
  FBReactNativeSpec: 3fc2d478e1c4b08276f9dd9128f80ec6d5d85c1f
807
- Flipper: 6edb735e6c3e332975d1b17956bcc584eccf5818
808
- Flipper-Boost-iOSX: fd1e2b8cbef7e662a122412d7ac5f5bea715403c
809
- Flipper-DoubleConversion: 2dc99b02f658daf147069aad9dbd29d8feb06d30
810
- Flipper-Fmt: 60cbdd92fc254826e61d669a5d87ef7015396a9b
811
- Flipper-Folly: 584845625005ff068a6ebf41f857f468decd26b3
812
- Flipper-Glog: 70c50ce58ddaf67dc35180db05f191692570f446
813
- Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9
814
- FlipperKit: 2efad7007d6745a3f95e4034d547be637f89d3f6
815
745
  fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
816
746
  glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b
817
747
  hermes-engine: 81191603c4eaa01f5e4ae5737a9efcf64756c7b2
818
748
  IQKeyboardManagerSwift: 2dde0fc70110e8eac7ccce2a46fdbec6a850b414
819
749
  libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
820
- OpenSSL-Universal: ebc357f1e6bc71fa463ccb2fe676756aff50e88c
821
750
  RCT-Folly: 424b8c9a7a0b9ab2886ffe9c3b041ef628fd4fb1
822
751
  RCTRequired: c0569ecc035894e4a68baecb30fe6a7ea6e399f9
823
752
  RCTTypeSafety: e90354072c21236e0bcf1699011e39acd25fea2f
@@ -833,8 +762,11 @@ SPEC CHECKSUMS:
833
762
  React-jsiexecutor: c7f826e40fa9cab5d37cab6130b1af237332b594
834
763
  React-jsinspector: aaed4cf551c4a1c98092436518c2d267b13a673f
835
764
  React-logger: da1ebe05ae06eb6db4b162202faeafac4b435e77
836
- react-native-agora: 16de7d9657b24dcf1ea6edebb30d06fe3e050c68
765
+ react-native-agora: 0d623411f75a126e6d5f6a41761df9ef74da87e6
766
+ react-native-document-picker: 3599b238843369026201d2ef466df53f77ae0452
837
767
  react-native-keep-awake: afad8a51dfef9fe9655a6344771be32c8596d774
768
+ react-native-webview: bdc091de8cf7f8397653e30182efcd9f772e03b3
769
+ react-native-whiteboard: d56d2ffa0392b8572bfc613954845e48c6dfd38e
838
770
  React-NativeModulesApple: edb5ace14f73f4969df6e7b1f3e41bef0012740f
839
771
  React-perflogger: 496a1a3dc6737f964107cb3ddae7f9e265ddda58
840
772
  React-RCTActionSheet: 02904b932b50e680f4e26e7a686b33ebf7ef3c00
@@ -858,16 +790,16 @@ SPEC CHECKSUMS:
858
790
  RNCCheckbox: 75255b03e604bbcc26411eb31c4cbe3e3865f538
859
791
  RNCClipboard: 41d8d918092ae8e676f18adada19104fa3e68495
860
792
  RNExitApp: c4e052df2568b43bec8a37c7cd61194d4cfee2c3
793
+ RNFS: 4ac0f0ea233904cb798630b3c077808c06931688
861
794
  RNGestureHandler: 62232ba8f562f7dea5ba1b3383494eb5bf97a4d3
862
795
  RNInAppBrowser: 48b95ba7a4eaff5cc223bca338d3e319561dbd1b
863
796
  RNReanimated: 726395a2fa2f04cea340274ba57a4e659bc0d9c1
864
- RNShare: be91a5c149585affb02c25b351bd07ba927c7006
797
+ RNShare: 859ff710211285676b0bcedd156c12437ea1d564
865
798
  RNSVG: 3a79c0c4992213e4f06c08e62730c5e7b9e4dc17
866
799
  RNVectorIcons: fcc2f6cb32f5735b586e66d14103a74ce6ad61f8
867
800
  SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17
868
801
  Yoga: 3efc43e0d48686ce2e8c60f99d4e6bd349aff981
869
- YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
870
802
 
871
- PODFILE CHECKSUM: 95ab0379f9280b66124095c8e71af47dee6c741e
803
+ PODFILE CHECKSUM: be04179eb7bb6b413f3e785e287b050128ebfee6
872
804
 
873
- COCOAPODS: 1.11.2
805
+ COCOAPODS: 1.15.2
@@ -81,7 +81,7 @@
81
81
  "react-dom": "18.2.0",
82
82
  "react-is": "18.0.0",
83
83
  "react-native": "0.72.4",
84
- "react-native-agora": "3.7.2-rc.3",
84
+ "react-native-agora": "4.2.6-build.3-rc.1",
85
85
  "react-native-document-picker": "^9.1.0",
86
86
  "react-native-exit-app": "1.1.0",
87
87
  "react-native-fs": "^2.20.0",
@@ -92,12 +92,12 @@
92
92
  "react-native-keyboard-manager": "6.5.4-1",
93
93
  "react-native-reanimated": "3.4.2",
94
94
  "react-native-responsive-fontsize": "0.5.1",
95
- "react-native-share": "7.9.0",
95
+ "react-native-share": "10.0.2",
96
96
  "react-native-svg": "13.6.0",
97
97
  "react-native-vector-icons": "9.2.0",
98
98
  "react-native-walkthrough-tooltip": "1.4.0",
99
99
  "react-native-web": "0.19.7",
100
- "react-native-webview": "^11.22.2",
100
+ "react-native-webview": "13.8.1",
101
101
  "react-router-dom": "5.2.0",
102
102
  "react-router-native": "5.2.0",
103
103
  "react-spring-bottom-sheet": "3.4.1",
@@ -154,6 +154,7 @@
154
154
  "metro-react-native-babel-preset": "0.76.8",
155
155
  "prettier": "^2.4.1",
156
156
  "react-devtools-electron": "4.7.0",
157
+ "react-native-url-polyfill": "^2.0.0",
157
158
  "react-refresh": "0.12.0",
158
159
  "react-test-renderer": "18.2.0",
159
160
  "style-loader": "3.3.1",
@@ -167,6 +168,6 @@
167
168
  "yargs": "15.4.1"
168
169
  },
169
170
  "engines": {
170
- "node": ">=16"
171
+ "node": ">=18"
171
172
  }
172
173
  }