agora-appbuilder-core 4.0.0-api.5 → 4.0.0-api.6

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 (406) hide show
  1. package/package.json +2 -2
  2. package/template/.bundle/config +2 -0
  3. package/template/Gemfile +4 -0
  4. package/template/Gulpfile.js +29 -29
  5. package/template/_eslintrc.js +3 -3
  6. package/template/_gitignore +12 -11
  7. package/template/_package-lock.json +26471 -22749
  8. package/template/_prettierrc.js +2 -2
  9. package/template/agora-rn-uikit/src/Contexts/PropsContext.tsx +30 -10
  10. package/template/agora-rn-uikit/src/Contexts/RtcContext.tsx +19 -0
  11. package/template/agora-rn-uikit/src/Controls/BtnTemplate.tsx +1 -0
  12. package/template/agora-rn-uikit/src/Controls/Icons.ts +45 -0
  13. package/template/agora-rn-uikit/src/Controls/Local/EndCall.tsx +6 -4
  14. package/template/agora-rn-uikit/src/Controls/Local/FullScreen.tsx +3 -1
  15. package/template/agora-rn-uikit/src/Controls/Local/LocalAudioMute.tsx +1 -0
  16. package/template/agora-rn-uikit/src/Controls/Local/LocalVideoMute.tsx +1 -0
  17. package/template/agora-rn-uikit/src/Controls/Local/SwitchCamera.tsx +1 -0
  18. package/template/agora-rn-uikit/src/Controls/Remote/RemoteAudioMute.tsx +1 -0
  19. package/template/agora-rn-uikit/src/Controls/Remote/RemoteSwap.tsx +3 -1
  20. package/template/agora-rn-uikit/src/Controls/Remote/RemoteVideoMute.tsx +1 -0
  21. package/template/agora-rn-uikit/src/Reducer/ActiveSpeaker.ts +30 -0
  22. package/template/agora-rn-uikit/src/Reducer/LocalMuteAudio.ts +3 -1
  23. package/template/agora-rn-uikit/src/Reducer/LocalMuteVideo.ts +3 -1
  24. package/template/agora-rn-uikit/src/Reducer/LocalPermissionState.ts +1 -1
  25. package/template/agora-rn-uikit/src/Reducer/RemoteAudioStateChanged.ts +3 -3
  26. package/template/agora-rn-uikit/src/Reducer/RemoteVideoStateChanged.ts +5 -4
  27. package/template/agora-rn-uikit/src/Reducer/UpdateDualStreamMode.ts +1 -1
  28. package/template/agora-rn-uikit/src/Reducer/UserJoined.ts +8 -5
  29. package/template/agora-rn-uikit/src/Reducer/UserMuteRemoteAudio.ts +1 -1
  30. package/template/agora-rn-uikit/src/Reducer/UserMuteRemoteVideo.ts +1 -1
  31. package/template/agora-rn-uikit/src/Reducer/UserOffline.ts +1 -1
  32. package/template/agora-rn-uikit/src/Reducer/UserPin.ts +18 -1
  33. package/template/agora-rn-uikit/src/Reducer/UserSecondaryPin.ts +23 -0
  34. package/template/agora-rn-uikit/src/Reducer/index.ts +2 -0
  35. package/template/agora-rn-uikit/src/Rtc/Create.tsx +47 -21
  36. package/template/agora-rn-uikit/src/Rtc/Join.tsx +37 -15
  37. package/template/agora-rn-uikit/src/RtcConfigure.tsx +122 -12
  38. package/template/agora-rn-uikit/src/Views/MaxVideoView.native.tsx +32 -4
  39. package/template/agora-rn-uikit/src/Views/MaxVideoView.tsx +21 -2
  40. package/template/agora-rn-uikit/src/Views/MinVideoView.tsx +2 -0
  41. package/template/android/app/build.gradle +59 -156
  42. package/template/android/app/src/debug/AndroidManifest.xml +6 -1
  43. package/template/android/app/src/debug/java/com/helloworld/ReactNativeFlipper.java +7 -4
  44. package/template/android/app/src/main/AndroidManifest.xml +6 -19
  45. package/template/android/app/src/main/assets/fonts/icomoon.ttf +0 -0
  46. package/template/android/app/src/main/java/com/helloworld/MainActivity.java +17 -0
  47. package/template/android/app/src/main/java/com/helloworld/MainApplication.java +19 -36
  48. package/template/android/app/src/release/java/com/helloworld/ReactNativeFlipper.java +20 -0
  49. package/template/android/build.gradle +19 -33
  50. package/template/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  51. package/template/android/gradle/wrapper/gradle-wrapper.properties +3 -2
  52. package/template/android/gradle.properties +18 -4
  53. package/template/android/gradlew +165 -104
  54. package/template/android/gradlew.bat +12 -23
  55. package/template/android/settings.gradle +1 -0
  56. package/template/bridge/rtc/webNg/RtcEngine.ts +131 -16
  57. package/template/bridge/rtc/webNg/index.ts +72 -1
  58. package/template/bridge/rtm/web/index.ts +5 -3
  59. package/template/configTransform.js +16 -1
  60. package/template/customization-api/action-library.ts +0 -8
  61. package/template/customization-api/app-state.ts +11 -2
  62. package/template/customization-api/customEvents.ts +6 -1
  63. package/template/customization-api/index.ts +4 -0
  64. package/template/customization-api/sub-components.ts +6 -3
  65. package/template/customization-api/temp.ts +50 -0
  66. package/template/customization-api/typeDefinition.ts +26 -14
  67. package/template/customization-api/types.ts +26 -0
  68. package/template/customization-api/utils.ts +2 -0
  69. package/template/customization-implementation/index.ts +0 -1
  70. package/template/defaultConfig.js +72 -0
  71. package/template/global.d.ts +13 -1
  72. package/template/index.js +0 -4
  73. package/template/index.web.js +0 -5
  74. package/template/index.wsdk.tsx +1 -19
  75. package/template/ios/.xcode.env +11 -0
  76. package/template/ios/HelloWorld/AppDelegate.h +2 -4
  77. package/template/ios/HelloWorld/AppDelegate.mm +42 -0
  78. package/template/ios/HelloWorld/Info.plist +1 -1
  79. package/template/ios/HelloWorld/main.m +2 -1
  80. package/template/ios/HelloWorld.xcodeproj/project.pbxproj +529 -17
  81. package/template/ios/HelloWorld.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  82. package/template/ios/HelloWorld.xcworkspace/contents.xcworkspacedata +10 -0
  83. package/template/ios/HelloWorld.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  84. package/template/ios/HelloWorldTests/HelloWorldTests.m +14 -13
  85. package/template/ios/HelloWorldTests/Info.plist +2 -2
  86. package/template/ios/Podfile +53 -20
  87. package/template/ios/Podfile.lock +873 -0
  88. package/template/ios/ScreenSharing/Info.plist +15 -0
  89. package/template/ios/ScreenSharing/SampleHandler.h +9 -0
  90. package/template/ios/ScreenSharing/SampleHandler.m +70 -0
  91. package/template/jest.config.js +4 -0
  92. package/template/metro.config.js +7 -32
  93. package/template/package.json +52 -39
  94. package/template/react-native-toast-message/index.d.ts +3 -1
  95. package/template/react-native-toast-message/index.js +1 -0
  96. package/template/react-native-toast-message/src/components/base/index.js +20 -32
  97. package/template/react-native-toast-message/src/components/base/styles.js +18 -21
  98. package/template/react-native-toast-message/src/components/checkbox.js +24 -19
  99. package/template/react-native-toast-message/src/index.js +3 -1
  100. package/template/react-native-toast-message/src/index.sdk.tsx +4 -1
  101. package/template/src/App.tsx +13 -85
  102. package/template/src/AppRoutes.tsx +77 -0
  103. package/template/src/AppWrapper.tsx +38 -33
  104. package/template/src/SDKAppWrapper.tsx +79 -43
  105. package/template/src/app-state/useNoiseSupression.native.tsx +67 -0
  106. package/template/src/app-state/useNoiseSupression.tsx +107 -0
  107. package/template/src/app-state/useVideoQuality.tsx +39 -0
  108. package/template/src/assets/font-styles.css +171 -3
  109. package/template/src/assets/fonts/icomoon.ttf +0 -0
  110. package/template/src/assets/selection.json +1 -1
  111. package/template/src/atoms/ActionMenu.tsx +50 -11
  112. package/template/src/atoms/Avatar.tsx +51 -0
  113. package/template/src/atoms/Card.tsx +21 -8
  114. package/template/src/atoms/Carousel.native.tsx +105 -0
  115. package/template/src/atoms/Carousel.tsx +103 -0
  116. package/template/src/atoms/Checkbox.tsx +98 -0
  117. package/template/src/atoms/CircularProgress.tsx +0 -1
  118. package/template/src/atoms/ClipboardIconButton.tsx +91 -0
  119. package/template/src/atoms/CustomIcon.tsx +45 -0
  120. package/template/src/atoms/DropDownMulti.tsx +349 -0
  121. package/template/src/atoms/Dropdown.tsx +3 -3
  122. package/template/src/atoms/IconButton.tsx +52 -9
  123. package/template/src/atoms/ImageIcon.tsx +6 -3
  124. package/template/src/atoms/InlineNotification.tsx +81 -0
  125. package/template/src/atoms/MeetingLink.tsx +160 -0
  126. package/template/src/atoms/ParticipantsCount.tsx +18 -7
  127. package/template/src/atoms/Popup.tsx +49 -27
  128. package/template/src/atoms/PrimaryButton.tsx +19 -5
  129. package/template/src/atoms/RecordingInfo.tsx +2 -2
  130. package/template/src/atoms/SecondaryButton.tsx +2 -0
  131. package/template/src/atoms/Spacer.tsx +1 -0
  132. package/template/src/atoms/TertiaryButton.tsx +35 -5
  133. package/template/src/atoms/TextInput.tsx +2 -1
  134. package/template/src/atoms/Toolbar.tsx +64 -30
  135. package/template/src/atoms/ToolbarItem.tsx +11 -5
  136. package/template/src/atoms/ToolbarPreset.tsx +13 -2
  137. package/template/src/atoms/Tooltip.tsx +26 -4
  138. package/template/src/auth/AuthProvider.tsx +500 -0
  139. package/template/src/auth/AuthRoute.tsx +94 -0
  140. package/template/src/auth/IDPAuth.electron.tsx +31 -0
  141. package/template/src/auth/IDPAuth.tsx +67 -0
  142. package/template/src/auth/IDPLogoutComponent.tsx +158 -0
  143. package/template/src/auth/UserCancelPopup.tsx +115 -0
  144. package/template/src/auth/config.ts +52 -0
  145. package/template/src/auth/openIDPURL.electron.tsx +39 -0
  146. package/template/src/auth/openIDPURL.native.tsx +51 -0
  147. package/template/src/auth/openIDPURL.tsx +20 -0
  148. package/template/src/auth/useIDPAuth.electron.tsx +65 -0
  149. package/template/src/auth/useIDPAuth.native.tsx +70 -0
  150. package/template/src/auth/useIDPAuth.tsx +63 -0
  151. package/template/src/auth/useTokenAuth.tsx +194 -0
  152. package/template/src/components/Chat.tsx +5 -8
  153. package/template/src/components/ChatContext.ts +4 -0
  154. package/template/src/components/ColorConfigure.tsx +0 -1
  155. package/template/src/components/CommonStyles.ts +9 -2
  156. package/template/src/components/Controls.tsx +659 -52
  157. package/template/src/components/DeviceConfigure.tsx +362 -156
  158. package/template/src/components/DeviceContext.tsx +2 -0
  159. package/template/src/components/EventsConfigure.tsx +713 -109
  160. package/template/src/components/GraphQLProvider.tsx +62 -36
  161. package/template/src/components/GridVideo.tsx +23 -13
  162. package/template/src/components/HostControlView.tsx +11 -14
  163. package/template/src/components/JoinPhrase.tsx +0 -1
  164. package/template/src/components/Leftbar.tsx +4 -3
  165. package/template/src/components/Navbar.tsx +110 -42
  166. package/template/src/components/NavbarMobile.tsx +47 -36
  167. package/template/src/components/Navigation.native.tsx +1 -15
  168. package/template/src/{subComponents/screenshare/ScreenshareButton.native.tsx → components/Navigation.sdk.tsx} +17 -3
  169. package/template/src/components/Navigation.tsx +1 -15
  170. package/template/src/components/ParticipantsView.tsx +56 -48
  171. package/template/src/components/PinnedVideo.tsx +188 -114
  172. package/template/src/components/Precall.native.tsx +169 -67
  173. package/template/src/components/Precall.tsx +237 -71
  174. package/template/src/components/RTMConfigure.tsx +167 -55
  175. package/template/src/components/Rightbar.tsx +4 -3
  176. package/template/src/components/Router.electron.ts +1 -0
  177. package/template/src/components/Router.native.ts +1 -0
  178. package/template/src/components/Router.sdk.ts +1 -0
  179. package/template/src/components/Router.ts +1 -0
  180. package/template/src/components/SdkApiContext.tsx +179 -27
  181. package/template/src/components/SdkMuteToggleListener.tsx +88 -0
  182. package/template/src/components/SessionContext.tsx +0 -1
  183. package/template/src/components/Settings.tsx +25 -3
  184. package/template/src/components/SettingsView.tsx +44 -9
  185. package/template/src/components/Share.tsx +149 -71
  186. package/template/src/components/StorageContext.tsx +19 -5
  187. package/template/src/components/ToastComponent.tsx +3 -0
  188. package/template/src/components/WhiteboardLayout.tsx +291 -0
  189. package/template/src/components/chat-messages/useChatMessages.tsx +420 -207
  190. package/template/src/components/common/Error.tsx +2 -0
  191. package/template/src/components/common/Logo.tsx +2 -2
  192. package/template/src/components/contexts/LiveStreamDataContext.tsx +5 -4
  193. package/template/src/components/contexts/ScreenShareContext.tsx +15 -1
  194. package/template/src/components/contexts/WaitingRoomContext.tsx +50 -0
  195. package/template/src/components/contexts/WhiteboardContext.tsx +54 -54
  196. package/template/src/components/disable-chat/useDisableChat.tsx +32 -0
  197. package/template/src/components/livestream/LiveStreamContext.tsx +262 -177
  198. package/template/src/components/livestream/Types.ts +34 -18
  199. package/template/src/components/livestream/views/LiveStreamAttendeeLandingTile.tsx +295 -0
  200. package/template/src/components/livestream/views/LiveStreamControls.tsx +2 -4
  201. package/template/src/components/meeting-info-invite/MeetingInfo.tsx +82 -0
  202. package/template/src/components/meeting-info-invite/MeetingInfoCardHeader.tsx +86 -0
  203. package/template/src/components/meeting-info-invite/MeetingInfoGridTile.tsx +218 -0
  204. package/template/src/components/meeting-info-invite/MeetingInfoLinks.tsx +122 -0
  205. package/template/src/components/participants/AllAudienceParticipants.tsx +4 -5
  206. package/template/src/components/participants/AllHostParticipants.tsx +5 -6
  207. package/template/src/components/participants/Participant.tsx +40 -9
  208. package/template/src/components/participants/ParticipantSectionTitle.tsx +5 -2
  209. package/template/src/components/participants/ScreenshareParticipants.tsx +15 -17
  210. package/template/src/components/participants/UserActionMenuOptions.tsx +157 -49
  211. package/template/src/components/participants/WaitingRoomParticipants.tsx +74 -0
  212. package/template/src/components/popups/InvitePopup.tsx +110 -45
  213. package/template/src/components/popups/StartScreenSharePopup.native.tsx +182 -0
  214. package/template/src/components/popups/StartScreenSharePopup.tsx +6 -0
  215. package/template/src/components/popups/StopRecordingPopup.tsx +11 -5
  216. package/template/src/components/popups/StopScreenSharePopup.native.tsx +135 -0
  217. package/template/src/components/popups/StopScreenSharePopup.tsx +6 -0
  218. package/template/src/components/popups/WhiteboardClearAllPopup.tsx +123 -0
  219. package/template/src/components/precall/LocalMute.tsx +69 -45
  220. package/template/src/components/precall/PermissionHelper.tsx +52 -24
  221. package/template/src/components/precall/PreCallSettings.tsx +1 -0
  222. package/template/src/components/precall/VideoFallback.tsx +173 -0
  223. package/template/src/components/precall/VideoPreview.native.tsx +16 -50
  224. package/template/src/components/precall/VideoPreview.tsx +27 -162
  225. package/template/src/components/precall/index.tsx +2 -0
  226. package/template/src/components/precall/joinCallBtn.native.tsx +10 -3
  227. package/template/src/components/precall/joinCallBtn.tsx +11 -2
  228. package/template/src/components/precall/joinWaitingRoomBtn.native.tsx +210 -0
  229. package/template/src/components/precall/joinWaitingRoomBtn.tsx +250 -0
  230. package/template/src/components/precall/meetingTitle.tsx +35 -9
  231. package/template/src/components/precall/selectDevice.tsx +5 -5
  232. package/template/src/components/precall/textInput.tsx +16 -18
  233. package/template/src/components/precall/usePreCall.tsx +14 -4
  234. package/template/src/components/room-info/useRoomInfo.tsx +34 -0
  235. package/template/src/components/useShareLink.tsx +24 -59
  236. package/template/src/components/useUserPreference.tsx +73 -10
  237. package/template/src/components/useVideoCall.tsx +76 -3
  238. package/template/src/components/virtual-background/VBButton.tsx +64 -0
  239. package/template/src/components/virtual-background/VBCard.native.tsx +282 -0
  240. package/template/src/components/virtual-background/VBCard.tsx +272 -0
  241. package/template/src/components/virtual-background/VBPanel.tsx +279 -0
  242. package/template/src/components/virtual-background/VButils.native.ts +37 -0
  243. package/template/src/components/virtual-background/VButils.ts +104 -0
  244. package/template/src/components/virtual-background/VideoPreview.native.tsx +43 -0
  245. package/template/src/components/virtual-background/VideoPreview.tsx +106 -0
  246. package/template/src/components/virtual-background/imagePaths.ts +87 -0
  247. package/template/src/components/virtual-background/images/beachImageBase64.ts +1 -0
  248. package/template/src/components/virtual-background/images/bedroomImageBase64.ts +1 -0
  249. package/template/src/components/virtual-background/images/bookImageBase64.ts +1 -0
  250. package/template/src/components/virtual-background/images/earthImageBase64.ts +1 -0
  251. package/template/src/components/virtual-background/images/index.ts +37 -0
  252. package/template/src/components/virtual-background/images/lampImageBase64.ts +1 -0
  253. package/template/src/components/virtual-background/images/mountainsImageBase64.ts +1 -0
  254. package/template/src/components/virtual-background/images/office1ImageBase64.ts +1 -0
  255. package/template/src/components/virtual-background/images/officeImageBase64.ts +1 -0
  256. package/template/src/components/virtual-background/images/plantsImageBase64.ts +1 -0
  257. package/template/src/components/virtual-background/images/skyImageBase64.ts +1 -0
  258. package/template/src/components/virtual-background/images/wallImageBase64.ts +1 -0
  259. package/template/src/components/virtual-background/useVB.native.tsx +188 -0
  260. package/template/src/components/virtual-background/useVB.tsx +267 -0
  261. package/template/src/components/whiteboard/StrokeWidthTool.tsx +137 -0
  262. package/template/src/components/whiteboard/WhiteboardButton.tsx +93 -0
  263. package/template/src/components/whiteboard/WhiteboardCanvas.tsx +99 -0
  264. package/template/src/components/whiteboard/WhiteboardConfigure.native.tsx +137 -0
  265. package/template/src/components/whiteboard/WhiteboardConfigure.tsx +441 -0
  266. package/template/src/components/whiteboard/WhiteboardCursor.tsx +152 -0
  267. package/template/src/components/whiteboard/WhiteboardToolBox.tsx +1246 -0
  268. package/template/src/components/whiteboard/WhiteboardView.native.tsx +109 -0
  269. package/template/src/components/whiteboard/WhiteboardView.tsx +81 -0
  270. package/template/src/components/whiteboard/WhiteboardWidget.tsx +674 -0
  271. package/template/src/components/whiteboard/WhiteboardWrapper.tsx +38 -0
  272. package/template/src/language/default-labels/commonLabels.ts +51 -14
  273. package/template/src/language/default-labels/createScreenLabels.ts +97 -17
  274. package/template/src/language/default-labels/joinScreenLabels.ts +45 -6
  275. package/template/src/language/default-labels/precallScreenLabels.ts +145 -23
  276. package/template/src/language/default-labels/shareLinkScreenLabels.ts +85 -37
  277. package/template/src/language/default-labels/videoCallScreenLabels.ts +1137 -158
  278. package/template/src/pages/Create.tsx +125 -80
  279. package/template/src/pages/Join.tsx +76 -34
  280. package/template/src/pages/Login.tsx +26 -0
  281. package/template/src/pages/VideoCall.tsx +229 -114
  282. package/template/src/pages/video-call/ActionSheet.native.tsx +54 -7
  283. package/template/src/pages/video-call/ActionSheet.tsx +55 -16
  284. package/template/src/pages/video-call/ActionSheetContent.tsx +366 -291
  285. package/template/src/pages/video-call/ActionSheetHandle.tsx +7 -1
  286. package/template/src/pages/video-call/DefaultLayouts.ts +11 -5
  287. package/template/src/pages/video-call/NameWithMicIcon.tsx +17 -9
  288. package/template/src/pages/video-call/PinchableView.tsx +119 -0
  289. package/template/src/pages/video-call/RenderComponent.tsx +12 -3
  290. package/template/src/pages/video-call/SidePanelHeader.tsx +208 -6
  291. package/template/src/pages/video-call/VideoCallMobileView.tsx +140 -106
  292. package/template/src/pages/video-call/VideoCallScreen.native.tsx +3 -2
  293. package/template/src/pages/video-call/VideoCallScreen.tsx +113 -66
  294. package/template/src/pages/video-call/VideoComponent.tsx +53 -5
  295. package/template/src/pages/video-call/VideoRenderer.tsx +309 -52
  296. package/template/src/pages/video-call/VisibilitySensor.tsx +104 -0
  297. package/template/src/pages/video-call/ZoomableWrapper.native.tsx +34 -0
  298. package/template/src/pages/video-call/ZoomableWrapper.tsx +5 -0
  299. package/template/src/pages/video-call/index.ts +2 -0
  300. package/template/src/rtm/RTMEngine.ts +9 -4
  301. package/template/src/rtm-events/constants.ts +20 -0
  302. package/template/src/rtm-events-api/Events.ts +2 -0
  303. package/template/src/rtm-events-api/LocalEvents.ts +8 -0
  304. package/template/src/selection.json +1 -0
  305. package/template/src/subComponents/ChatBubble.tsx +81 -64
  306. package/template/src/subComponents/ChatContainer.tsx +20 -13
  307. package/template/src/subComponents/ChatInput.ios.tsx +11 -2
  308. package/template/src/subComponents/ChatInput.tsx +12 -3
  309. package/template/src/subComponents/Checkbox.native.tsx +46 -46
  310. package/template/src/subComponents/Checkbox.tsx +7 -6
  311. package/template/src/subComponents/CopyJoinInfo.tsx +26 -11
  312. package/template/src/subComponents/EndcallPopup.tsx +83 -12
  313. package/template/src/subComponents/LanguageSelector.tsx +34 -30
  314. package/template/src/subComponents/LayoutIconButton.tsx +30 -8
  315. package/template/src/subComponents/LayoutIconDropdown.tsx +19 -3
  316. package/template/src/subComponents/Loading.tsx +60 -0
  317. package/template/src/subComponents/LocalAudioMute.tsx +106 -30
  318. package/template/src/subComponents/LocalEndCall.tsx +91 -15
  319. package/template/src/subComponents/LocalSwitchCamera.tsx +50 -11
  320. package/template/src/subComponents/LocalVideoMute.tsx +126 -32
  321. package/template/src/subComponents/LogoutButton.tsx +1 -1
  322. package/template/src/subComponents/NetworkQualityPill.tsx +14 -31
  323. package/template/src/subComponents/Recording.tsx +23 -6
  324. package/template/src/subComponents/RemoteAudioMute.tsx +3 -3
  325. package/template/src/subComponents/RemoteMutePopup.tsx +55 -14
  326. package/template/src/subComponents/RemoteVideoMute.tsx +3 -3
  327. package/template/src/subComponents/RemoveMeetingPopup.tsx +19 -6
  328. package/template/src/subComponents/RemoveScreensharePopup.tsx +20 -5
  329. package/template/src/subComponents/ScreenShareNotice.tsx +11 -6
  330. package/template/src/subComponents/SelectDevice.tsx +98 -32
  331. package/template/src/subComponents/SidePanelEnum.tsx +2 -0
  332. package/template/src/subComponents/SidePanelHeader.tsx +97 -63
  333. package/template/src/subComponents/ToastConfig.tsx +70 -61
  334. package/template/src/subComponents/caption/Caption.tsx +130 -0
  335. package/template/src/subComponents/caption/CaptionContainer.tsx +302 -0
  336. package/template/src/subComponents/caption/CaptionIcon.tsx +111 -0
  337. package/template/src/subComponents/caption/CaptionText.tsx +182 -0
  338. package/template/src/subComponents/caption/DownloadTranscriptBtn.tsx +65 -0
  339. package/template/src/subComponents/caption/LanguageSelectorPopup.tsx +192 -0
  340. package/template/src/subComponents/caption/Transcript.tsx +449 -0
  341. package/template/src/subComponents/caption/TranscriptIcon.tsx +123 -0
  342. package/template/src/subComponents/caption/TranscriptText.tsx +98 -0
  343. package/template/src/subComponents/caption/index.ts +3 -0
  344. package/template/src/subComponents/caption/proto/ptoto.js +91 -0
  345. package/template/src/subComponents/caption/proto/test.proto +23 -0
  346. package/template/src/subComponents/caption/useCaption.tsx +123 -0
  347. package/template/src/subComponents/caption/useCaptionWidth.ts +27 -0
  348. package/template/src/subComponents/caption/useSTTAPI.tsx +179 -0
  349. package/template/src/subComponents/caption/useStreamMessageUtils.native.ts +211 -0
  350. package/template/src/subComponents/caption/useStreamMessageUtils.ts +235 -0
  351. package/template/src/subComponents/caption/useTranscriptDownload.native.ts +68 -0
  352. package/template/src/subComponents/caption/useTranscriptDownload.ts +52 -0
  353. package/template/src/subComponents/caption/utils.ts +125 -0
  354. package/template/src/subComponents/chat/ChatParticipants.tsx +53 -17
  355. package/template/src/subComponents/livestream/CurrentLiveStreamRequestsView.tsx +11 -13
  356. package/template/src/subComponents/livestream/controls/LocalRaiseHand.tsx +33 -9
  357. package/template/src/subComponents/livestream/controls/RemoteLiveStreamApprovedRequestRecall.tsx +1 -0
  358. package/template/src/subComponents/livestream/controls/RemoteLiveStreamRequestApprove.tsx +10 -6
  359. package/template/src/subComponents/livestream/controls/RemoteLiveStreamRequestReject.tsx +28 -19
  360. package/template/src/subComponents/recording/useRecording.tsx +49 -20
  361. package/template/src/subComponents/recording/useRecordingLayoutQuery.tsx +0 -1
  362. package/template/src/subComponents/screenshare/ScreenshareButton.tsx +29 -10
  363. package/template/src/subComponents/screenshare/ScreenshareConfigure.native.tsx +270 -66
  364. package/template/src/subComponents/screenshare/ScreenshareConfigure.tsx +182 -95
  365. package/template/src/subComponents/screenshare/useScreenshare.tsx +2 -0
  366. package/template/src/subComponents/waiting-rooms/WaitingRoomControls.tsx +85 -0
  367. package/template/src/subComponents/waiting-rooms/useWaitingRoomAPI.ts +75 -0
  368. package/template/src/theme/index.ts +9 -0
  369. package/template/src/utils/SdkEvents.ts +14 -0
  370. package/template/src/utils/SdkMethodEvents.ts +23 -3
  371. package/template/src/utils/axiomLogger.ts +117 -0
  372. package/template/src/utils/book.jpg +0 -0
  373. package/template/src/utils/common.tsx +118 -6
  374. package/template/src/utils/endCallEveryOne.ts +7 -0
  375. package/template/src/utils/getCustomRoute.ts +7 -0
  376. package/template/src/utils/index.tsx +23 -0
  377. package/template/src/utils/useActionSheet.tsx +50 -0
  378. package/template/src/utils/useActiveSpeaker.ts +3 -7
  379. package/template/src/utils/useAppState.ts +17 -0
  380. package/template/src/utils/useAsyncEffect.ts +138 -0
  381. package/template/src/utils/useCreateRoom.ts +8 -12
  382. package/template/src/utils/useDisableButton.tsx +37 -0
  383. package/template/src/utils/useFindActiveSpeaker.native.ts +4 -0
  384. package/template/src/utils/useFindActiveSpeaker.ts +335 -0
  385. package/template/src/utils/useIsLocalUserSpeaking.native.ts +4 -0
  386. package/template/src/utils/useIsLocalUserSpeaking.ts +98 -0
  387. package/template/src/utils/useJoinRoom.ts +97 -36
  388. package/template/src/utils/useMuteToggleLocal.ts +114 -96
  389. package/template/src/utils/useString.ts +13 -3
  390. package/template/static.d.ts +42 -0
  391. package/template/tsconfig_rsdk_index.json +3 -3
  392. package/template/tsconfig_wsdk_index.json +1 -1
  393. package/template/web/index.html +20 -0
  394. package/template/webpack.commons.js +21 -10
  395. package/template/webpack.web.config.js +7 -3
  396. package/template/_buckconfig +0 -6
  397. package/template/_gitattributes +0 -1
  398. package/template/android/app/_BUCK +0 -55
  399. package/template/android/app/build_defs.bzl +0 -19
  400. package/template/ios/HelloWorld/AppDelegate.m +0 -74
  401. package/template/src/components/OAuth.electron.tsx +0 -41
  402. package/template/src/components/OAuth.native.tsx +0 -55
  403. package/template/src/components/OAuth.tsx +0 -30
  404. package/template/src/components/OAuthConfig.ts +0 -77
  405. package/template/src/components/Settings.native.tsx +0 -21
  406. package/template/src/components/StoreToken.tsx +0 -39
@@ -0,0 +1,873 @@
1
+ PODS:
2
+ - agora-react-native-rtm (1.5.1):
3
+ - AgoraRtm_iOS (= 1.5.1)
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)
29
+ - AgoraRtm_iOS (1.5.1)
30
+ - BEMCheckBox (1.4.1)
31
+ - boost (1.76.0)
32
+ - CocoaAsyncSocket (7.6.5)
33
+ - DoubleConversion (1.1.6)
34
+ - FBLazyVector (0.72.4)
35
+ - FBReactNativeSpec (0.72.4):
36
+ - RCT-Folly (= 2021.07.22.00)
37
+ - RCTRequired (= 0.72.4)
38
+ - RCTTypeSafety (= 0.72.4)
39
+ - React-Core (= 0.72.4)
40
+ - React-jsi (= 0.72.4)
41
+ - 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
+ - fmt (6.2.1)
101
+ - glog (0.3.5)
102
+ - hermes-engine (0.72.4):
103
+ - hermes-engine/Pre-built (= 0.72.4)
104
+ - hermes-engine/Pre-built (0.72.4)
105
+ - IQKeyboardManagerSwift (6.5.4)
106
+ - libevent (2.1.12)
107
+ - OpenSSL-Universal (1.1.1100)
108
+ - RCT-Folly (2021.07.22.00):
109
+ - boost
110
+ - DoubleConversion
111
+ - fmt (~> 6.2.1)
112
+ - glog
113
+ - RCT-Folly/Default (= 2021.07.22.00)
114
+ - RCT-Folly/Default (2021.07.22.00):
115
+ - boost
116
+ - DoubleConversion
117
+ - fmt (~> 6.2.1)
118
+ - glog
119
+ - RCT-Folly/Futures (2021.07.22.00):
120
+ - boost
121
+ - DoubleConversion
122
+ - fmt (~> 6.2.1)
123
+ - glog
124
+ - libevent
125
+ - RCTRequired (0.72.4)
126
+ - RCTTypeSafety (0.72.4):
127
+ - FBLazyVector (= 0.72.4)
128
+ - RCTRequired (= 0.72.4)
129
+ - React-Core (= 0.72.4)
130
+ - React (0.72.4):
131
+ - React-Core (= 0.72.4)
132
+ - React-Core/DevSupport (= 0.72.4)
133
+ - React-Core/RCTWebSocket (= 0.72.4)
134
+ - React-RCTActionSheet (= 0.72.4)
135
+ - React-RCTAnimation (= 0.72.4)
136
+ - React-RCTBlob (= 0.72.4)
137
+ - React-RCTImage (= 0.72.4)
138
+ - React-RCTLinking (= 0.72.4)
139
+ - React-RCTNetwork (= 0.72.4)
140
+ - React-RCTSettings (= 0.72.4)
141
+ - React-RCTText (= 0.72.4)
142
+ - React-RCTVibration (= 0.72.4)
143
+ - React-callinvoker (0.72.4)
144
+ - React-Codegen (0.72.4):
145
+ - DoubleConversion
146
+ - FBReactNativeSpec
147
+ - glog
148
+ - hermes-engine
149
+ - RCT-Folly
150
+ - RCTRequired
151
+ - RCTTypeSafety
152
+ - React-Core
153
+ - React-jsi
154
+ - React-jsiexecutor
155
+ - React-NativeModulesApple
156
+ - React-rncore
157
+ - ReactCommon/turbomodule/bridging
158
+ - ReactCommon/turbomodule/core
159
+ - React-Core (0.72.4):
160
+ - glog
161
+ - hermes-engine
162
+ - RCT-Folly (= 2021.07.22.00)
163
+ - React-Core/Default (= 0.72.4)
164
+ - React-cxxreact
165
+ - React-hermes
166
+ - React-jsi
167
+ - React-jsiexecutor
168
+ - React-perflogger
169
+ - React-runtimeexecutor
170
+ - React-utils
171
+ - SocketRocket (= 0.6.1)
172
+ - Yoga
173
+ - React-Core/CoreModulesHeaders (0.72.4):
174
+ - glog
175
+ - hermes-engine
176
+ - RCT-Folly (= 2021.07.22.00)
177
+ - React-Core/Default
178
+ - React-cxxreact
179
+ - React-hermes
180
+ - React-jsi
181
+ - React-jsiexecutor
182
+ - React-perflogger
183
+ - React-runtimeexecutor
184
+ - React-utils
185
+ - SocketRocket (= 0.6.1)
186
+ - Yoga
187
+ - React-Core/Default (0.72.4):
188
+ - glog
189
+ - hermes-engine
190
+ - RCT-Folly (= 2021.07.22.00)
191
+ - React-cxxreact
192
+ - React-hermes
193
+ - React-jsi
194
+ - React-jsiexecutor
195
+ - React-perflogger
196
+ - React-runtimeexecutor
197
+ - React-utils
198
+ - SocketRocket (= 0.6.1)
199
+ - Yoga
200
+ - React-Core/DevSupport (0.72.4):
201
+ - glog
202
+ - hermes-engine
203
+ - RCT-Folly (= 2021.07.22.00)
204
+ - React-Core/Default (= 0.72.4)
205
+ - React-Core/RCTWebSocket (= 0.72.4)
206
+ - React-cxxreact
207
+ - React-hermes
208
+ - React-jsi
209
+ - React-jsiexecutor
210
+ - React-jsinspector (= 0.72.4)
211
+ - React-perflogger
212
+ - React-runtimeexecutor
213
+ - React-utils
214
+ - SocketRocket (= 0.6.1)
215
+ - Yoga
216
+ - React-Core/RCTActionSheetHeaders (0.72.4):
217
+ - glog
218
+ - hermes-engine
219
+ - RCT-Folly (= 2021.07.22.00)
220
+ - React-Core/Default
221
+ - React-cxxreact
222
+ - React-hermes
223
+ - React-jsi
224
+ - React-jsiexecutor
225
+ - React-perflogger
226
+ - React-runtimeexecutor
227
+ - React-utils
228
+ - SocketRocket (= 0.6.1)
229
+ - Yoga
230
+ - React-Core/RCTAnimationHeaders (0.72.4):
231
+ - glog
232
+ - hermes-engine
233
+ - RCT-Folly (= 2021.07.22.00)
234
+ - React-Core/Default
235
+ - React-cxxreact
236
+ - React-hermes
237
+ - React-jsi
238
+ - React-jsiexecutor
239
+ - React-perflogger
240
+ - React-runtimeexecutor
241
+ - React-utils
242
+ - SocketRocket (= 0.6.1)
243
+ - Yoga
244
+ - React-Core/RCTBlobHeaders (0.72.4):
245
+ - glog
246
+ - hermes-engine
247
+ - RCT-Folly (= 2021.07.22.00)
248
+ - React-Core/Default
249
+ - React-cxxreact
250
+ - React-hermes
251
+ - React-jsi
252
+ - React-jsiexecutor
253
+ - React-perflogger
254
+ - React-runtimeexecutor
255
+ - React-utils
256
+ - SocketRocket (= 0.6.1)
257
+ - Yoga
258
+ - React-Core/RCTImageHeaders (0.72.4):
259
+ - glog
260
+ - hermes-engine
261
+ - RCT-Folly (= 2021.07.22.00)
262
+ - React-Core/Default
263
+ - React-cxxreact
264
+ - React-hermes
265
+ - React-jsi
266
+ - React-jsiexecutor
267
+ - React-perflogger
268
+ - React-runtimeexecutor
269
+ - React-utils
270
+ - SocketRocket (= 0.6.1)
271
+ - Yoga
272
+ - React-Core/RCTLinkingHeaders (0.72.4):
273
+ - glog
274
+ - hermes-engine
275
+ - RCT-Folly (= 2021.07.22.00)
276
+ - React-Core/Default
277
+ - React-cxxreact
278
+ - React-hermes
279
+ - React-jsi
280
+ - React-jsiexecutor
281
+ - React-perflogger
282
+ - React-runtimeexecutor
283
+ - React-utils
284
+ - SocketRocket (= 0.6.1)
285
+ - Yoga
286
+ - React-Core/RCTNetworkHeaders (0.72.4):
287
+ - glog
288
+ - hermes-engine
289
+ - RCT-Folly (= 2021.07.22.00)
290
+ - React-Core/Default
291
+ - React-cxxreact
292
+ - React-hermes
293
+ - React-jsi
294
+ - React-jsiexecutor
295
+ - React-perflogger
296
+ - React-runtimeexecutor
297
+ - React-utils
298
+ - SocketRocket (= 0.6.1)
299
+ - Yoga
300
+ - React-Core/RCTSettingsHeaders (0.72.4):
301
+ - glog
302
+ - hermes-engine
303
+ - RCT-Folly (= 2021.07.22.00)
304
+ - React-Core/Default
305
+ - React-cxxreact
306
+ - React-hermes
307
+ - React-jsi
308
+ - React-jsiexecutor
309
+ - React-perflogger
310
+ - React-runtimeexecutor
311
+ - React-utils
312
+ - SocketRocket (= 0.6.1)
313
+ - Yoga
314
+ - React-Core/RCTTextHeaders (0.72.4):
315
+ - glog
316
+ - hermes-engine
317
+ - RCT-Folly (= 2021.07.22.00)
318
+ - React-Core/Default
319
+ - React-cxxreact
320
+ - React-hermes
321
+ - React-jsi
322
+ - React-jsiexecutor
323
+ - React-perflogger
324
+ - React-runtimeexecutor
325
+ - React-utils
326
+ - SocketRocket (= 0.6.1)
327
+ - Yoga
328
+ - React-Core/RCTVibrationHeaders (0.72.4):
329
+ - glog
330
+ - hermes-engine
331
+ - RCT-Folly (= 2021.07.22.00)
332
+ - React-Core/Default
333
+ - React-cxxreact
334
+ - React-hermes
335
+ - React-jsi
336
+ - React-jsiexecutor
337
+ - React-perflogger
338
+ - React-runtimeexecutor
339
+ - React-utils
340
+ - SocketRocket (= 0.6.1)
341
+ - Yoga
342
+ - React-Core/RCTWebSocket (0.72.4):
343
+ - glog
344
+ - hermes-engine
345
+ - RCT-Folly (= 2021.07.22.00)
346
+ - React-Core/Default (= 0.72.4)
347
+ - React-cxxreact
348
+ - React-hermes
349
+ - React-jsi
350
+ - React-jsiexecutor
351
+ - React-perflogger
352
+ - React-runtimeexecutor
353
+ - React-utils
354
+ - SocketRocket (= 0.6.1)
355
+ - Yoga
356
+ - React-CoreModules (0.72.4):
357
+ - RCT-Folly (= 2021.07.22.00)
358
+ - RCTTypeSafety (= 0.72.4)
359
+ - React-Codegen (= 0.72.4)
360
+ - React-Core/CoreModulesHeaders (= 0.72.4)
361
+ - React-jsi (= 0.72.4)
362
+ - React-RCTBlob
363
+ - React-RCTImage (= 0.72.4)
364
+ - ReactCommon/turbomodule/core (= 0.72.4)
365
+ - SocketRocket (= 0.6.1)
366
+ - React-cxxreact (0.72.4):
367
+ - boost (= 1.76.0)
368
+ - DoubleConversion
369
+ - glog
370
+ - hermes-engine
371
+ - RCT-Folly (= 2021.07.22.00)
372
+ - React-callinvoker (= 0.72.4)
373
+ - React-debug (= 0.72.4)
374
+ - React-jsi (= 0.72.4)
375
+ - React-jsinspector (= 0.72.4)
376
+ - React-logger (= 0.72.4)
377
+ - React-perflogger (= 0.72.4)
378
+ - React-runtimeexecutor (= 0.72.4)
379
+ - React-debug (0.72.4)
380
+ - React-hermes (0.72.4):
381
+ - DoubleConversion
382
+ - glog
383
+ - hermes-engine
384
+ - RCT-Folly (= 2021.07.22.00)
385
+ - RCT-Folly/Futures (= 2021.07.22.00)
386
+ - React-cxxreact (= 0.72.4)
387
+ - React-jsi
388
+ - React-jsiexecutor (= 0.72.4)
389
+ - React-jsinspector (= 0.72.4)
390
+ - React-perflogger (= 0.72.4)
391
+ - React-jsi (0.72.4):
392
+ - boost (= 1.76.0)
393
+ - DoubleConversion
394
+ - glog
395
+ - hermes-engine
396
+ - RCT-Folly (= 2021.07.22.00)
397
+ - React-jsiexecutor (0.72.4):
398
+ - DoubleConversion
399
+ - glog
400
+ - hermes-engine
401
+ - RCT-Folly (= 2021.07.22.00)
402
+ - React-cxxreact (= 0.72.4)
403
+ - React-jsi (= 0.72.4)
404
+ - React-perflogger (= 0.72.4)
405
+ - React-jsinspector (0.72.4)
406
+ - React-logger (0.72.4):
407
+ - glog
408
+ - react-native-agora (3.7.2-rc.3):
409
+ - AgoraRtcEngine_Special_iOS (= 3.7.2.4)
410
+ - React-Core
411
+ - react-native-keep-awake (4.0.0):
412
+ - React
413
+ - React-NativeModulesApple (0.72.4):
414
+ - hermes-engine
415
+ - React-callinvoker
416
+ - React-Core
417
+ - React-cxxreact
418
+ - React-jsi
419
+ - React-runtimeexecutor
420
+ - ReactCommon/turbomodule/bridging
421
+ - ReactCommon/turbomodule/core
422
+ - React-perflogger (0.72.4)
423
+ - React-RCTActionSheet (0.72.4):
424
+ - React-Core/RCTActionSheetHeaders (= 0.72.4)
425
+ - React-RCTAnimation (0.72.4):
426
+ - RCT-Folly (= 2021.07.22.00)
427
+ - RCTTypeSafety (= 0.72.4)
428
+ - React-Codegen (= 0.72.4)
429
+ - React-Core/RCTAnimationHeaders (= 0.72.4)
430
+ - React-jsi (= 0.72.4)
431
+ - ReactCommon/turbomodule/core (= 0.72.4)
432
+ - React-RCTAppDelegate (0.72.4):
433
+ - RCT-Folly
434
+ - RCTRequired
435
+ - RCTTypeSafety
436
+ - React-Core
437
+ - React-CoreModules
438
+ - React-hermes
439
+ - React-NativeModulesApple
440
+ - React-RCTImage
441
+ - React-RCTNetwork
442
+ - React-runtimescheduler
443
+ - ReactCommon/turbomodule/core
444
+ - React-RCTBlob (0.72.4):
445
+ - hermes-engine
446
+ - RCT-Folly (= 2021.07.22.00)
447
+ - React-Codegen (= 0.72.4)
448
+ - React-Core/RCTBlobHeaders (= 0.72.4)
449
+ - React-Core/RCTWebSocket (= 0.72.4)
450
+ - React-jsi (= 0.72.4)
451
+ - React-RCTNetwork (= 0.72.4)
452
+ - ReactCommon/turbomodule/core (= 0.72.4)
453
+ - React-RCTImage (0.72.4):
454
+ - RCT-Folly (= 2021.07.22.00)
455
+ - RCTTypeSafety (= 0.72.4)
456
+ - React-Codegen (= 0.72.4)
457
+ - React-Core/RCTImageHeaders (= 0.72.4)
458
+ - React-jsi (= 0.72.4)
459
+ - React-RCTNetwork (= 0.72.4)
460
+ - ReactCommon/turbomodule/core (= 0.72.4)
461
+ - React-RCTLinking (0.72.4):
462
+ - React-Codegen (= 0.72.4)
463
+ - React-Core/RCTLinkingHeaders (= 0.72.4)
464
+ - React-jsi (= 0.72.4)
465
+ - ReactCommon/turbomodule/core (= 0.72.4)
466
+ - React-RCTNetwork (0.72.4):
467
+ - RCT-Folly (= 2021.07.22.00)
468
+ - RCTTypeSafety (= 0.72.4)
469
+ - React-Codegen (= 0.72.4)
470
+ - React-Core/RCTNetworkHeaders (= 0.72.4)
471
+ - React-jsi (= 0.72.4)
472
+ - ReactCommon/turbomodule/core (= 0.72.4)
473
+ - React-RCTSettings (0.72.4):
474
+ - RCT-Folly (= 2021.07.22.00)
475
+ - RCTTypeSafety (= 0.72.4)
476
+ - React-Codegen (= 0.72.4)
477
+ - React-Core/RCTSettingsHeaders (= 0.72.4)
478
+ - React-jsi (= 0.72.4)
479
+ - ReactCommon/turbomodule/core (= 0.72.4)
480
+ - React-RCTText (0.72.4):
481
+ - React-Core/RCTTextHeaders (= 0.72.4)
482
+ - React-RCTVibration (0.72.4):
483
+ - RCT-Folly (= 2021.07.22.00)
484
+ - React-Codegen (= 0.72.4)
485
+ - React-Core/RCTVibrationHeaders (= 0.72.4)
486
+ - React-jsi (= 0.72.4)
487
+ - ReactCommon/turbomodule/core (= 0.72.4)
488
+ - React-rncore (0.72.4)
489
+ - React-runtimeexecutor (0.72.4):
490
+ - React-jsi (= 0.72.4)
491
+ - React-runtimescheduler (0.72.4):
492
+ - glog
493
+ - hermes-engine
494
+ - RCT-Folly (= 2021.07.22.00)
495
+ - React-callinvoker
496
+ - React-debug
497
+ - React-jsi
498
+ - React-runtimeexecutor
499
+ - React-utils (0.72.4):
500
+ - glog
501
+ - RCT-Folly (= 2021.07.22.00)
502
+ - React-debug
503
+ - ReactCommon/turbomodule/bridging (0.72.4):
504
+ - DoubleConversion
505
+ - glog
506
+ - hermes-engine
507
+ - RCT-Folly (= 2021.07.22.00)
508
+ - React-callinvoker (= 0.72.4)
509
+ - React-cxxreact (= 0.72.4)
510
+ - React-jsi (= 0.72.4)
511
+ - React-logger (= 0.72.4)
512
+ - React-perflogger (= 0.72.4)
513
+ - ReactCommon/turbomodule/core (0.72.4):
514
+ - DoubleConversion
515
+ - glog
516
+ - hermes-engine
517
+ - RCT-Folly (= 2021.07.22.00)
518
+ - React-callinvoker (= 0.72.4)
519
+ - React-cxxreact (= 0.72.4)
520
+ - React-jsi (= 0.72.4)
521
+ - React-logger (= 0.72.4)
522
+ - React-perflogger (= 0.72.4)
523
+ - ReactNativeKeyboardManager (6.5.4-1):
524
+ - IQKeyboardManagerSwift (= 6.5.4)
525
+ - React
526
+ - React-RCTText
527
+ - rn-fetch-blob (0.12.0):
528
+ - React-Core
529
+ - RNCAsyncStorage (1.19.2):
530
+ - React-Core
531
+ - RNCCheckbox (0.5.16):
532
+ - BEMCheckBox (~> 1.4)
533
+ - React-Core
534
+ - RNCClipboard (1.5.1):
535
+ - React-Core
536
+ - RNExitApp (1.1.0):
537
+ - React
538
+ - RNGestureHandler (2.8.0):
539
+ - React-Core
540
+ - RNInAppBrowser (3.5.1):
541
+ - React-Core
542
+ - RNReanimated (3.4.2):
543
+ - DoubleConversion
544
+ - FBLazyVector
545
+ - glog
546
+ - hermes-engine
547
+ - RCT-Folly
548
+ - RCTRequired
549
+ - RCTTypeSafety
550
+ - React-callinvoker
551
+ - React-Core
552
+ - React-Core/DevSupport
553
+ - React-Core/RCTWebSocket
554
+ - React-CoreModules
555
+ - React-cxxreact
556
+ - React-hermes
557
+ - React-jsi
558
+ - React-jsiexecutor
559
+ - React-jsinspector
560
+ - React-RCTActionSheet
561
+ - React-RCTAnimation
562
+ - React-RCTAppDelegate
563
+ - React-RCTBlob
564
+ - React-RCTImage
565
+ - React-RCTLinking
566
+ - React-RCTNetwork
567
+ - React-RCTSettings
568
+ - React-RCTText
569
+ - ReactCommon/turbomodule/core
570
+ - Yoga
571
+ - RNShare (7.9.0):
572
+ - React-Core
573
+ - RNSVG (13.6.0):
574
+ - React-Core
575
+ - RNVectorIcons (9.2.0):
576
+ - React-Core
577
+ - SocketRocket (0.6.1)
578
+ - Yoga (1.14.0)
579
+ - YogaKit (1.18.1):
580
+ - Yoga (~> 1.14)
581
+
582
+ DEPENDENCIES:
583
+ - agora-react-native-rtm (from `../node_modules/agora-react-native-rtm`)
584
+ - AgoraRtcEngine_iOS (= 3.7.0.3)
585
+ - boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
586
+ - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
587
+ - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
588
+ - 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
+ - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
610
+ - hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`)
611
+ - libevent (~> 2.1.12)
612
+ - OpenSSL-Universal (= 1.1.1100)
613
+ - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
614
+ - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
615
+ - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
616
+ - React (from `../node_modules/react-native/`)
617
+ - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
618
+ - React-Codegen (from `build/generated/ios`)
619
+ - React-Core (from `../node_modules/react-native/`)
620
+ - React-Core/DevSupport (from `../node_modules/react-native/`)
621
+ - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
622
+ - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
623
+ - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
624
+ - React-debug (from `../node_modules/react-native/ReactCommon/react/debug`)
625
+ - React-hermes (from `../node_modules/react-native/ReactCommon/hermes`)
626
+ - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
627
+ - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
628
+ - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
629
+ - React-logger (from `../node_modules/react-native/ReactCommon/logger`)
630
+ - react-native-agora (from `../node_modules/react-native-agora`)
631
+ - react-native-keep-awake (from `../node_modules/react-native-keep-awake`)
632
+ - React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
633
+ - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
634
+ - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
635
+ - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
636
+ - React-RCTAppDelegate (from `../node_modules/react-native/Libraries/AppDelegate`)
637
+ - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
638
+ - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
639
+ - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
640
+ - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
641
+ - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
642
+ - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
643
+ - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
644
+ - React-rncore (from `../node_modules/react-native/ReactCommon`)
645
+ - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
646
+ - React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`)
647
+ - React-utils (from `../node_modules/react-native/ReactCommon/react/utils`)
648
+ - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
649
+ - ReactNativeKeyboardManager (from `../node_modules/react-native-keyboard-manager`)
650
+ - rn-fetch-blob (from `../node_modules/rn-fetch-blob`)
651
+ - "RNCAsyncStorage (from `../node_modules/@react-native-async-storage/async-storage`)"
652
+ - "RNCCheckbox (from `../node_modules/@react-native-community/checkbox`)"
653
+ - "RNCClipboard (from `../node_modules/@react-native-community/clipboard`)"
654
+ - RNExitApp (from `../node_modules/react-native-exit-app`)
655
+ - RNGestureHandler (from `../node_modules/react-native-gesture-handler`)
656
+ - RNInAppBrowser (from `../node_modules/react-native-inappbrowser-reborn`)
657
+ - RNReanimated (from `../node_modules/react-native-reanimated`)
658
+ - RNShare (from `../node_modules/react-native-share`)
659
+ - RNSVG (from `../node_modules/react-native-svg`)
660
+ - RNVectorIcons (from `../node_modules/react-native-vector-icons`)
661
+ - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
662
+
663
+ SPEC REPOS:
664
+ trunk:
665
+ - AgoraRtcEngine_iOS
666
+ - AgoraRtcEngine_Special_iOS
667
+ - AgoraRtm_iOS
668
+ - 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
+ - fmt
679
+ - IQKeyboardManagerSwift
680
+ - libevent
681
+ - OpenSSL-Universal
682
+ - SocketRocket
683
+ - YogaKit
684
+
685
+ EXTERNAL SOURCES:
686
+ agora-react-native-rtm:
687
+ :path: "../node_modules/agora-react-native-rtm"
688
+ boost:
689
+ :podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
690
+ DoubleConversion:
691
+ :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
692
+ FBLazyVector:
693
+ :path: "../node_modules/react-native/Libraries/FBLazyVector"
694
+ FBReactNativeSpec:
695
+ :path: "../node_modules/react-native/React/FBReactNativeSpec"
696
+ glog:
697
+ :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
698
+ hermes-engine:
699
+ :podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec"
700
+ :tag: hermes-2023-08-07-RNv0.72.4-813b2def12bc9df02654b3e3653ae4a68d0572e0
701
+ RCT-Folly:
702
+ :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
703
+ RCTRequired:
704
+ :path: "../node_modules/react-native/Libraries/RCTRequired"
705
+ RCTTypeSafety:
706
+ :path: "../node_modules/react-native/Libraries/TypeSafety"
707
+ React:
708
+ :path: "../node_modules/react-native/"
709
+ React-callinvoker:
710
+ :path: "../node_modules/react-native/ReactCommon/callinvoker"
711
+ React-Codegen:
712
+ :path: build/generated/ios
713
+ React-Core:
714
+ :path: "../node_modules/react-native/"
715
+ React-CoreModules:
716
+ :path: "../node_modules/react-native/React/CoreModules"
717
+ React-cxxreact:
718
+ :path: "../node_modules/react-native/ReactCommon/cxxreact"
719
+ React-debug:
720
+ :path: "../node_modules/react-native/ReactCommon/react/debug"
721
+ React-hermes:
722
+ :path: "../node_modules/react-native/ReactCommon/hermes"
723
+ React-jsi:
724
+ :path: "../node_modules/react-native/ReactCommon/jsi"
725
+ React-jsiexecutor:
726
+ :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
727
+ React-jsinspector:
728
+ :path: "../node_modules/react-native/ReactCommon/jsinspector"
729
+ React-logger:
730
+ :path: "../node_modules/react-native/ReactCommon/logger"
731
+ react-native-agora:
732
+ :path: "../node_modules/react-native-agora"
733
+ react-native-keep-awake:
734
+ :path: "../node_modules/react-native-keep-awake"
735
+ React-NativeModulesApple:
736
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"
737
+ React-perflogger:
738
+ :path: "../node_modules/react-native/ReactCommon/reactperflogger"
739
+ React-RCTActionSheet:
740
+ :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
741
+ React-RCTAnimation:
742
+ :path: "../node_modules/react-native/Libraries/NativeAnimation"
743
+ React-RCTAppDelegate:
744
+ :path: "../node_modules/react-native/Libraries/AppDelegate"
745
+ React-RCTBlob:
746
+ :path: "../node_modules/react-native/Libraries/Blob"
747
+ React-RCTImage:
748
+ :path: "../node_modules/react-native/Libraries/Image"
749
+ React-RCTLinking:
750
+ :path: "../node_modules/react-native/Libraries/LinkingIOS"
751
+ React-RCTNetwork:
752
+ :path: "../node_modules/react-native/Libraries/Network"
753
+ React-RCTSettings:
754
+ :path: "../node_modules/react-native/Libraries/Settings"
755
+ React-RCTText:
756
+ :path: "../node_modules/react-native/Libraries/Text"
757
+ React-RCTVibration:
758
+ :path: "../node_modules/react-native/Libraries/Vibration"
759
+ React-rncore:
760
+ :path: "../node_modules/react-native/ReactCommon"
761
+ React-runtimeexecutor:
762
+ :path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
763
+ React-runtimescheduler:
764
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler"
765
+ React-utils:
766
+ :path: "../node_modules/react-native/ReactCommon/react/utils"
767
+ ReactCommon:
768
+ :path: "../node_modules/react-native/ReactCommon"
769
+ ReactNativeKeyboardManager:
770
+ :path: "../node_modules/react-native-keyboard-manager"
771
+ rn-fetch-blob:
772
+ :path: "../node_modules/rn-fetch-blob"
773
+ RNCAsyncStorage:
774
+ :path: "../node_modules/@react-native-async-storage/async-storage"
775
+ RNCCheckbox:
776
+ :path: "../node_modules/@react-native-community/checkbox"
777
+ RNCClipboard:
778
+ :path: "../node_modules/@react-native-community/clipboard"
779
+ RNExitApp:
780
+ :path: "../node_modules/react-native-exit-app"
781
+ RNGestureHandler:
782
+ :path: "../node_modules/react-native-gesture-handler"
783
+ RNInAppBrowser:
784
+ :path: "../node_modules/react-native-inappbrowser-reborn"
785
+ RNReanimated:
786
+ :path: "../node_modules/react-native-reanimated"
787
+ RNShare:
788
+ :path: "../node_modules/react-native-share"
789
+ RNSVG:
790
+ :path: "../node_modules/react-native-svg"
791
+ RNVectorIcons:
792
+ :path: "../node_modules/react-native-vector-icons"
793
+ Yoga:
794
+ :path: "../node_modules/react-native/ReactCommon/yoga"
795
+
796
+ SPEC CHECKSUMS:
797
+ agora-react-native-rtm: 20cd594088d33caa46c75f2d079efbac62848cec
798
+ AgoraRtcEngine_iOS: 549bb3853d5afb18fabca4197786f39f31141da8
799
+ AgoraRtcEngine_Special_iOS: 0ebb16a61343394538886b048ffced6b5497673a
800
+ AgoraRtm_iOS: 595a9fa33a409831e6183396ea8f8bc563918403
801
+ BEMCheckBox: 5ba6e37ade3d3657b36caecc35c8b75c6c2b1a4e
802
+ boost: 57d2868c099736d80fcd648bf211b4431e51a558
803
+ CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99
804
+ DoubleConversion: 5189b271737e1565bdce30deb4a08d647e3f5f54
805
+ FBLazyVector: 5d4a3b7f411219a45a6d952f77d2c0a6c9989da5
806
+ 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
+ fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
816
+ glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b
817
+ hermes-engine: 81191603c4eaa01f5e4ae5737a9efcf64756c7b2
818
+ IQKeyboardManagerSwift: 2dde0fc70110e8eac7ccce2a46fdbec6a850b414
819
+ libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
820
+ OpenSSL-Universal: ebc357f1e6bc71fa463ccb2fe676756aff50e88c
821
+ RCT-Folly: 424b8c9a7a0b9ab2886ffe9c3b041ef628fd4fb1
822
+ RCTRequired: c0569ecc035894e4a68baecb30fe6a7ea6e399f9
823
+ RCTTypeSafety: e90354072c21236e0bcf1699011e39acd25fea2f
824
+ React: a1be3c6dc0a6e949ccd3e659781aa47bbae1868f
825
+ React-callinvoker: 1020b33f6cb1a1824f9ca2a86609fbce2a73c6ed
826
+ React-Codegen: a0a26badf098d4a779acda922caf74f6ecabed28
827
+ React-Core: 52075b80f10c26f62219d7b5d13d7d8089f027b3
828
+ React-CoreModules: 21abab85d7ad9038ce2b1c33d39e3baaf7dc9244
829
+ React-cxxreact: 4ad1cc861e32fb533dad6ff7a4ea25680fa1c994
830
+ React-debug: 17366a3d5c5d2f5fc04f09101a4af38cb42b54ae
831
+ React-hermes: 37377d0a56aa0cf55c65248271866ce3268cde3f
832
+ React-jsi: 6de8b0ccc6b765b58e4eee9ee38049dbeaf5c221
833
+ React-jsiexecutor: c7f826e40fa9cab5d37cab6130b1af237332b594
834
+ React-jsinspector: aaed4cf551c4a1c98092436518c2d267b13a673f
835
+ React-logger: da1ebe05ae06eb6db4b162202faeafac4b435e77
836
+ react-native-agora: 16de7d9657b24dcf1ea6edebb30d06fe3e050c68
837
+ react-native-keep-awake: afad8a51dfef9fe9655a6344771be32c8596d774
838
+ React-NativeModulesApple: edb5ace14f73f4969df6e7b1f3e41bef0012740f
839
+ React-perflogger: 496a1a3dc6737f964107cb3ddae7f9e265ddda58
840
+ React-RCTActionSheet: 02904b932b50e680f4e26e7a686b33ebf7ef3c00
841
+ React-RCTAnimation: 88feaf0a85648fb8fd497ce749829774910276d6
842
+ React-RCTAppDelegate: 5792ac0f0feccb584765fdd7aa81ea320c4d9b0b
843
+ React-RCTBlob: 0dbc9e2a13d241b37d46b53e54630cbad1f0e141
844
+ React-RCTImage: b111645ab901f8e59fc68fbe31f5731bdbeef087
845
+ React-RCTLinking: 3d719727b4c098aad3588aa3559361ee0579f5de
846
+ React-RCTNetwork: b44d3580be05d74556ba4efbf53570f17e38f734
847
+ React-RCTSettings: c0c54b330442c29874cd4dae6e94190dc11a6f6f
848
+ React-RCTText: 9b9f5589d9b649d7246c3f336e116496df28cfe6
849
+ React-RCTVibration: 691c67f3beaf1d084ceed5eb5c1dddd9afa8591e
850
+ React-rncore: 142268f6c92e296dc079aadda3fade778562f9e4
851
+ React-runtimeexecutor: d465ba0c47ef3ed8281143f59605cacc2244d5c7
852
+ React-runtimescheduler: 4941cc1b3cf08b792fbf666342c9fc95f1969035
853
+ React-utils: b79f2411931f9d3ea5781404dcbb2fa8a837e13a
854
+ ReactCommon: 4b2bdcb50a3543e1c2b2849ad44533686610826d
855
+ ReactNativeKeyboardManager: 93ac3934a51f548c54ac02d61c90e33220bba086
856
+ rn-fetch-blob: f065bb7ab7fb48dd002629f8bdcb0336602d3cba
857
+ RNCAsyncStorage: f57e929cd7757f2cb3dd8186d123c09e8281a1ad
858
+ RNCCheckbox: 75255b03e604bbcc26411eb31c4cbe3e3865f538
859
+ RNCClipboard: 41d8d918092ae8e676f18adada19104fa3e68495
860
+ RNExitApp: c4e052df2568b43bec8a37c7cd61194d4cfee2c3
861
+ RNGestureHandler: 62232ba8f562f7dea5ba1b3383494eb5bf97a4d3
862
+ RNInAppBrowser: 48b95ba7a4eaff5cc223bca338d3e319561dbd1b
863
+ RNReanimated: 726395a2fa2f04cea340274ba57a4e659bc0d9c1
864
+ RNShare: be91a5c149585affb02c25b351bd07ba927c7006
865
+ RNSVG: 3a79c0c4992213e4f06c08e62730c5e7b9e4dc17
866
+ RNVectorIcons: fcc2f6cb32f5735b586e66d14103a74ce6ad61f8
867
+ SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17
868
+ Yoga: 3efc43e0d48686ce2e8c60f99d4e6bd349aff981
869
+ YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
870
+
871
+ PODFILE CHECKSUM: 95ab0379f9280b66124095c8e71af47dee6c741e
872
+
873
+ COCOAPODS: 1.11.2