react-native-shengwang 4.6.2-rc.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +755 -0
- package/LICENSE +20 -0
- package/README.md +162 -0
- package/android/build.gradle +180 -0
- package/android/consumer-rules.pro +5 -0
- package/android/gradle.properties +5 -0
- package/android/src/main/AndroidManifest.xml +11 -0
- package/android/src/main/AndroidManifestNew.xml +9 -0
- package/android/src/main/java/io/agora/rtc/ng/react/AgoraPIPActivity.java +107 -0
- package/android/src/main/java/io/agora/rtc/ng/react/AgoraRtcNgModule.java +278 -0
- package/android/src/main/java/io/agora/rtc/ng/react/AgoraRtcNgPackage.java +61 -0
- package/android/src/main/java/io/agora/rtc/ng/react/AgoraRtcSurfaceViewManager.java +60 -0
- package/android/src/main/java/io/agora/rtc/ng/react/AgoraRtcTextureViewManager.java +45 -0
- package/android/src/newarch/io/agora/rtc/ng/react/AgoraRtcNgSpec.java +9 -0
- package/android/src/newarch/io/agora/rtc/ng/react/AgoraRtcSurfaceViewManagerSpec.java +25 -0
- package/android/src/newarch/io/agora/rtc/ng/react/AgoraRtcTextureViewManagerSpec.java +25 -0
- package/android/src/oldarch/io/agora/rtc/ng/react/AgoraRtcNgSpec.java +40 -0
- package/android/src/oldarch/io/agora/rtc/ng/react/AgoraRtcSurfaceViewManagerSpec.java +16 -0
- package/android/src/oldarch/io/agora/rtc/ng/react/AgoraRtcTextureViewManagerSpec.java +12 -0
- package/ios/AgoraRtcNg.h +20 -0
- package/ios/AgoraRtcNg.mm +475 -0
- package/ios/AgoraRtcNg.xcodeproj/project.pbxproj +278 -0
- package/ios/AgoraRtcSurfaceView.h +17 -0
- package/ios/AgoraRtcSurfaceView.mm +95 -0
- package/ios/AgoraRtcSurfaceViewManager.mm +41 -0
- package/lib/commonjs/AgoraBase.js +4298 -0
- package/lib/commonjs/AgoraBase.js.map +1 -0
- package/lib/commonjs/AgoraMediaBase.js +1057 -0
- package/lib/commonjs/AgoraMediaBase.js.map +1 -0
- package/lib/commonjs/AgoraMediaPlayerTypes.js +323 -0
- package/lib/commonjs/AgoraMediaPlayerTypes.js.map +1 -0
- package/lib/commonjs/AgoraRtcRenderView.js +55 -0
- package/lib/commonjs/AgoraRtcRenderView.js.map +1 -0
- package/lib/commonjs/IAgoraH265Transcoder.js +40 -0
- package/lib/commonjs/IAgoraH265Transcoder.js.map +1 -0
- package/lib/commonjs/IAgoraLog.js +81 -0
- package/lib/commonjs/IAgoraLog.js.map +1 -0
- package/lib/commonjs/IAgoraMediaEngine.js +35 -0
- package/lib/commonjs/IAgoraMediaEngine.js.map +1 -0
- package/lib/commonjs/IAgoraMediaPlayer.js +25 -0
- package/lib/commonjs/IAgoraMediaPlayer.js.map +1 -0
- package/lib/commonjs/IAgoraMediaPlayerSource.js +4 -0
- package/lib/commonjs/IAgoraMediaPlayerSource.js.map +1 -0
- package/lib/commonjs/IAgoraMediaRecorder.js +13 -0
- package/lib/commonjs/IAgoraMediaRecorder.js.map +1 -0
- package/lib/commonjs/IAgoraMediaStreamingSource.js +77 -0
- package/lib/commonjs/IAgoraMediaStreamingSource.js.map +1 -0
- package/lib/commonjs/IAgoraMusicContentCenter.js +166 -0
- package/lib/commonjs/IAgoraMusicContentCenter.js.map +1 -0
- package/lib/commonjs/IAgoraPip.js +55 -0
- package/lib/commonjs/IAgoraPip.js.map +1 -0
- package/lib/commonjs/IAgoraRhythmPlayer.js +65 -0
- package/lib/commonjs/IAgoraRhythmPlayer.js.map +1 -0
- package/lib/commonjs/IAgoraRtcEngine.js +1056 -0
- package/lib/commonjs/IAgoraRtcEngine.js.map +1 -0
- package/lib/commonjs/IAgoraRtcEngineEx.js +22 -0
- package/lib/commonjs/IAgoraRtcEngineEx.js.map +1 -0
- package/lib/commonjs/IAgoraSpatialAudio.js +27 -0
- package/lib/commonjs/IAgoraSpatialAudio.js.map +1 -0
- package/lib/commonjs/IAudioDeviceManager.js +23 -0
- package/lib/commonjs/IAudioDeviceManager.js.map +1 -0
- package/lib/commonjs/Utils.js +44 -0
- package/lib/commonjs/Utils.js.map +1 -0
- package/lib/commonjs/extension/AgoraBaseExtension.js +6 -0
- package/lib/commonjs/extension/AgoraBaseExtension.js.map +1 -0
- package/lib/commonjs/extension/AgoraMediaBaseExtension.js +6 -0
- package/lib/commonjs/extension/AgoraMediaBaseExtension.js.map +1 -0
- package/lib/commonjs/extension/AgoraMediaPlayerTypesExtension.js +6 -0
- package/lib/commonjs/extension/AgoraMediaPlayerTypesExtension.js.map +1 -0
- package/lib/commonjs/extension/IAgoraH265TranscoderExtension.js +6 -0
- package/lib/commonjs/extension/IAgoraH265TranscoderExtension.js.map +1 -0
- package/lib/commonjs/extension/IAgoraLogExtension.js +6 -0
- package/lib/commonjs/extension/IAgoraLogExtension.js.map +1 -0
- package/lib/commonjs/extension/IAgoraMediaEngineExtension.js +6 -0
- package/lib/commonjs/extension/IAgoraMediaEngineExtension.js.map +1 -0
- package/lib/commonjs/extension/IAgoraMediaPlayerExtension.js +6 -0
- package/lib/commonjs/extension/IAgoraMediaPlayerExtension.js.map +1 -0
- package/lib/commonjs/extension/IAgoraMediaPlayerSourceExtension.js +6 -0
- package/lib/commonjs/extension/IAgoraMediaPlayerSourceExtension.js.map +1 -0
- package/lib/commonjs/extension/IAgoraMediaRecorderExtension.js +6 -0
- package/lib/commonjs/extension/IAgoraMediaRecorderExtension.js.map +1 -0
- package/lib/commonjs/extension/IAgoraMusicContentCenterExtension.js +6 -0
- package/lib/commonjs/extension/IAgoraMusicContentCenterExtension.js.map +1 -0
- package/lib/commonjs/extension/IAgoraPipExtension.js +6 -0
- package/lib/commonjs/extension/IAgoraPipExtension.js.map +1 -0
- package/lib/commonjs/extension/IAgoraRhythmPlayerExtension.js +6 -0
- package/lib/commonjs/extension/IAgoraRhythmPlayerExtension.js.map +1 -0
- package/lib/commonjs/extension/IAgoraRtcEngineExExtension.js +6 -0
- package/lib/commonjs/extension/IAgoraRtcEngineExExtension.js.map +1 -0
- package/lib/commonjs/extension/IAgoraRtcEngineExtension.js +6 -0
- package/lib/commonjs/extension/IAgoraRtcEngineExtension.js.map +1 -0
- package/lib/commonjs/extension/IAgoraSpatialAudioExtension.js +6 -0
- package/lib/commonjs/extension/IAgoraSpatialAudioExtension.js.map +1 -0
- package/lib/commonjs/extension/IAudioDeviceManagerExtension.js +6 -0
- package/lib/commonjs/extension/IAudioDeviceManagerExtension.js.map +1 -0
- package/lib/commonjs/impl/AgoraBaseImpl.js +26 -0
- package/lib/commonjs/impl/AgoraBaseImpl.js.map +1 -0
- package/lib/commonjs/impl/AgoraMediaBaseImpl.js +153 -0
- package/lib/commonjs/impl/AgoraMediaBaseImpl.js.map +1 -0
- package/lib/commonjs/impl/IAgoraH265TranscoderImpl.js +121 -0
- package/lib/commonjs/impl/IAgoraH265TranscoderImpl.js.map +1 -0
- package/lib/commonjs/impl/IAgoraMediaEngineImpl.js +341 -0
- package/lib/commonjs/impl/IAgoraMediaEngineImpl.js.map +1 -0
- package/lib/commonjs/impl/IAgoraMediaPlayerImpl.js +965 -0
- package/lib/commonjs/impl/IAgoraMediaPlayerImpl.js.map +1 -0
- package/lib/commonjs/impl/IAgoraMediaPlayerSourceImpl.js +76 -0
- package/lib/commonjs/impl/IAgoraMediaPlayerSourceImpl.js.map +1 -0
- package/lib/commonjs/impl/IAgoraMediaRecorderImpl.js +51 -0
- package/lib/commonjs/impl/IAgoraMediaRecorderImpl.js.map +1 -0
- package/lib/commonjs/impl/IAgoraMusicContentCenterImpl.js +429 -0
- package/lib/commonjs/impl/IAgoraMusicContentCenterImpl.js.map +1 -0
- package/lib/commonjs/impl/IAgoraRtcEngineExImpl.js +1182 -0
- package/lib/commonjs/impl/IAgoraRtcEngineExImpl.js.map +1 -0
- package/lib/commonjs/impl/IAgoraRtcEngineImpl.js +5435 -0
- package/lib/commonjs/impl/IAgoraRtcEngineImpl.js.map +1 -0
- package/lib/commonjs/impl/IAgoraSpatialAudioImpl.js +362 -0
- package/lib/commonjs/impl/IAgoraSpatialAudioImpl.js.map +1 -0
- package/lib/commonjs/impl/IAudioDeviceManagerImpl.js +379 -0
- package/lib/commonjs/impl/IAudioDeviceManagerImpl.js.map +1 -0
- package/lib/commonjs/index.js +255 -0
- package/lib/commonjs/index.js.map +1 -0
- package/lib/commonjs/internal/AgoraH265TranscoderInternal.js +66 -0
- package/lib/commonjs/internal/AgoraH265TranscoderInternal.js.map +1 -0
- package/lib/commonjs/internal/AgoraMediaBaseInternal.js +20 -0
- package/lib/commonjs/internal/AgoraMediaBaseInternal.js.map +1 -0
- package/lib/commonjs/internal/AgoraPipInternal.js +101 -0
- package/lib/commonjs/internal/AgoraPipInternal.js.map +1 -0
- package/lib/commonjs/internal/IAgoraRtcRenderView.js +72 -0
- package/lib/commonjs/internal/IAgoraRtcRenderView.js.map +1 -0
- package/lib/commonjs/internal/IrisApiEngine.js +259 -0
- package/lib/commonjs/internal/IrisApiEngine.js.map +1 -0
- package/lib/commonjs/internal/LocalSpatialAudioEngineInternal.js +10 -0
- package/lib/commonjs/internal/LocalSpatialAudioEngineInternal.js.map +1 -0
- package/lib/commonjs/internal/MediaEngineInternal.js +124 -0
- package/lib/commonjs/internal/MediaEngineInternal.js.map +1 -0
- package/lib/commonjs/internal/MediaPlayerInternal.js +170 -0
- package/lib/commonjs/internal/MediaPlayerInternal.js.map +1 -0
- package/lib/commonjs/internal/MediaRecorderInternal.js +75 -0
- package/lib/commonjs/internal/MediaRecorderInternal.js.map +1 -0
- package/lib/commonjs/internal/MusicContentCenterInternal.js +144 -0
- package/lib/commonjs/internal/MusicContentCenterInternal.js.map +1 -0
- package/lib/commonjs/internal/RtcEngineExInternal.js +258 -0
- package/lib/commonjs/internal/RtcEngineExInternal.js.map +1 -0
- package/lib/commonjs/internal/call.js +133 -0
- package/lib/commonjs/internal/call.js.map +1 -0
- package/lib/commonjs/internal/event.js +32 -0
- package/lib/commonjs/internal/event.js.map +1 -0
- package/lib/commonjs/specs/AgoraRtcSurfaceViewNativeComponent.js +10 -0
- package/lib/commonjs/specs/AgoraRtcSurfaceViewNativeComponent.js.map +1 -0
- package/lib/commonjs/specs/AgoraRtcTextureViewNativeComponent.js +10 -0
- package/lib/commonjs/specs/AgoraRtcTextureViewNativeComponent.js.map +1 -0
- package/lib/commonjs/specs/NativeAgoraRtcNg.js +9 -0
- package/lib/commonjs/specs/NativeAgoraRtcNg.js.map +1 -0
- package/lib/commonjs/specs/index.js +22 -0
- package/lib/commonjs/specs/index.js.map +1 -0
- package/lib/commonjs/ti/AgoraBase-ti.js +24 -0
- package/lib/commonjs/ti/AgoraBase-ti.js.map +1 -0
- package/lib/commonjs/ti/AgoraMediaBase-ti.js +59 -0
- package/lib/commonjs/ti/AgoraMediaBase-ti.js.map +1 -0
- package/lib/commonjs/ti/AgoraMediaPlayerTypes-ti.js +15 -0
- package/lib/commonjs/ti/AgoraMediaPlayerTypes-ti.js.map +1 -0
- package/lib/commonjs/ti/AgoraPip-ti.js +22 -0
- package/lib/commonjs/ti/AgoraPip-ti.js.map +1 -0
- package/lib/commonjs/ti/IAgoraH265Transcoder-ti.js +24 -0
- package/lib/commonjs/ti/IAgoraH265Transcoder-ti.js.map +1 -0
- package/lib/commonjs/ti/IAgoraLog-ti.js +15 -0
- package/lib/commonjs/ti/IAgoraLog-ti.js.map +1 -0
- package/lib/commonjs/ti/IAgoraMediaEngine-ti.js +15 -0
- package/lib/commonjs/ti/IAgoraMediaEngine-ti.js.map +1 -0
- package/lib/commonjs/ti/IAgoraMediaPlayer-ti.js +22 -0
- package/lib/commonjs/ti/IAgoraMediaPlayer-ti.js.map +1 -0
- package/lib/commonjs/ti/IAgoraMediaPlayerSource-ti.js +34 -0
- package/lib/commonjs/ti/IAgoraMediaPlayerSource-ti.js.map +1 -0
- package/lib/commonjs/ti/IAgoraMediaRecorder-ti.js +15 -0
- package/lib/commonjs/ti/IAgoraMediaRecorder-ti.js.map +1 -0
- package/lib/commonjs/ti/IAgoraMediaStreamingSource-ti.js +15 -0
- package/lib/commonjs/ti/IAgoraMediaStreamingSource-ti.js.map +1 -0
- package/lib/commonjs/ti/IAgoraMusicContentCenter-ti.js +26 -0
- package/lib/commonjs/ti/IAgoraMusicContentCenter-ti.js.map +1 -0
- package/lib/commonjs/ti/IAgoraPip-ti.js +22 -0
- package/lib/commonjs/ti/IAgoraPip-ti.js.map +1 -0
- package/lib/commonjs/ti/IAgoraRhythmPlayer-ti.js +15 -0
- package/lib/commonjs/ti/IAgoraRhythmPlayer-ti.js.map +1 -0
- package/lib/commonjs/ti/IAgoraRtcEngine-ti.js +128 -0
- package/lib/commonjs/ti/IAgoraRtcEngine-ti.js.map +1 -0
- package/lib/commonjs/ti/IAgoraRtcEngineEx-ti.js +15 -0
- package/lib/commonjs/ti/IAgoraRtcEngineEx-ti.js.map +1 -0
- package/lib/commonjs/ti/IAgoraSpatialAudio-ti.js +15 -0
- package/lib/commonjs/ti/IAgoraSpatialAudio-ti.js.map +1 -0
- package/lib/commonjs/ti/IAudioDeviceManager-ti.js +15 -0
- package/lib/commonjs/ti/IAudioDeviceManager-ti.js.map +1 -0
- package/lib/commonjs/ti/Utils-ti.js +15 -0
- package/lib/commonjs/ti/Utils-ti.js.map +1 -0
- package/lib/commonjs/ti/index-ti.js +15 -0
- package/lib/commonjs/ti/index-ti.js.map +1 -0
- package/lib/module/AgoraBase.js +4333 -0
- package/lib/module/AgoraBase.js.map +1 -0
- package/lib/module/AgoraMediaBase.js +1067 -0
- package/lib/module/AgoraMediaBase.js.map +1 -0
- package/lib/module/AgoraMediaPlayerTypes.js +318 -0
- package/lib/module/AgoraMediaPlayerTypes.js.map +1 -0
- package/lib/module/AgoraRtcRenderView.js +47 -0
- package/lib/module/AgoraRtcRenderView.js.map +1 -0
- package/lib/module/IAgoraH265Transcoder.js +36 -0
- package/lib/module/IAgoraH265Transcoder.js.map +1 -0
- package/lib/module/IAgoraLog.js +77 -0
- package/lib/module/IAgoraLog.js.map +1 -0
- package/lib/module/IAgoraMediaEngine.js +29 -0
- package/lib/module/IAgoraMediaEngine.js.map +1 -0
- package/lib/module/IAgoraMediaPlayer.js +17 -0
- package/lib/module/IAgoraMediaPlayer.js.map +1 -0
- package/lib/module/IAgoraMediaPlayerSource.js +6 -0
- package/lib/module/IAgoraMediaPlayerSource.js.map +1 -0
- package/lib/module/IAgoraMediaRecorder.js +6 -0
- package/lib/module/IAgoraMediaRecorder.js.map +1 -0
- package/lib/module/IAgoraMediaStreamingSource.js +73 -0
- package/lib/module/IAgoraMediaStreamingSource.js.map +1 -0
- package/lib/module/IAgoraMusicContentCenter.js +156 -0
- package/lib/module/IAgoraMusicContentCenter.js.map +1 -0
- package/lib/module/IAgoraPip.js +48 -0
- package/lib/module/IAgoraPip.js.map +1 -0
- package/lib/module/IAgoraRhythmPlayer.js +61 -0
- package/lib/module/IAgoraRhythmPlayer.js.map +1 -0
- package/lib/module/IAgoraRtcEngine.js +1049 -0
- package/lib/module/IAgoraRtcEngine.js.map +1 -0
- package/lib/module/IAgoraRtcEngineEx.js +15 -0
- package/lib/module/IAgoraRtcEngineEx.js.map +1 -0
- package/lib/module/IAgoraSpatialAudio.js +18 -0
- package/lib/module/IAgoraSpatialAudio.js.map +1 -0
- package/lib/module/IAudioDeviceManager.js +17 -0
- package/lib/module/IAudioDeviceManager.js.map +1 -0
- package/lib/module/Utils.js +35 -0
- package/lib/module/Utils.js.map +1 -0
- package/lib/module/extension/AgoraBaseExtension.js +2 -0
- package/lib/module/extension/AgoraBaseExtension.js.map +1 -0
- package/lib/module/extension/AgoraMediaBaseExtension.js +2 -0
- package/lib/module/extension/AgoraMediaBaseExtension.js.map +1 -0
- package/lib/module/extension/AgoraMediaPlayerTypesExtension.js +2 -0
- package/lib/module/extension/AgoraMediaPlayerTypesExtension.js.map +1 -0
- package/lib/module/extension/IAgoraH265TranscoderExtension.js +2 -0
- package/lib/module/extension/IAgoraH265TranscoderExtension.js.map +1 -0
- package/lib/module/extension/IAgoraLogExtension.js +2 -0
- package/lib/module/extension/IAgoraLogExtension.js.map +1 -0
- package/lib/module/extension/IAgoraMediaEngineExtension.js +2 -0
- package/lib/module/extension/IAgoraMediaEngineExtension.js.map +1 -0
- package/lib/module/extension/IAgoraMediaPlayerExtension.js +2 -0
- package/lib/module/extension/IAgoraMediaPlayerExtension.js.map +1 -0
- package/lib/module/extension/IAgoraMediaPlayerSourceExtension.js +2 -0
- package/lib/module/extension/IAgoraMediaPlayerSourceExtension.js.map +1 -0
- package/lib/module/extension/IAgoraMediaRecorderExtension.js +2 -0
- package/lib/module/extension/IAgoraMediaRecorderExtension.js.map +1 -0
- package/lib/module/extension/IAgoraMusicContentCenterExtension.js +2 -0
- package/lib/module/extension/IAgoraMusicContentCenterExtension.js.map +1 -0
- package/lib/module/extension/IAgoraPipExtension.js +2 -0
- package/lib/module/extension/IAgoraPipExtension.js.map +1 -0
- package/lib/module/extension/IAgoraRhythmPlayerExtension.js +2 -0
- package/lib/module/extension/IAgoraRhythmPlayerExtension.js.map +1 -0
- package/lib/module/extension/IAgoraRtcEngineExExtension.js +2 -0
- package/lib/module/extension/IAgoraRtcEngineExExtension.js.map +1 -0
- package/lib/module/extension/IAgoraRtcEngineExtension.js +2 -0
- package/lib/module/extension/IAgoraRtcEngineExtension.js.map +1 -0
- package/lib/module/extension/IAgoraSpatialAudioExtension.js +2 -0
- package/lib/module/extension/IAgoraSpatialAudioExtension.js.map +1 -0
- package/lib/module/extension/IAudioDeviceManagerExtension.js +2 -0
- package/lib/module/extension/IAudioDeviceManagerExtension.js.map +1 -0
- package/lib/module/impl/AgoraBaseImpl.js +20 -0
- package/lib/module/impl/AgoraBaseImpl.js.map +1 -0
- package/lib/module/impl/AgoraMediaBaseImpl.js +139 -0
- package/lib/module/impl/AgoraMediaBaseImpl.js.map +1 -0
- package/lib/module/impl/IAgoraH265TranscoderImpl.js +113 -0
- package/lib/module/impl/IAgoraH265TranscoderImpl.js.map +1 -0
- package/lib/module/impl/IAgoraMediaEngineImpl.js +335 -0
- package/lib/module/impl/IAgoraMediaEngineImpl.js.map +1 -0
- package/lib/module/impl/IAgoraMediaPlayerImpl.js +957 -0
- package/lib/module/impl/IAgoraMediaPlayerImpl.js.map +1 -0
- package/lib/module/impl/IAgoraMediaPlayerSourceImpl.js +70 -0
- package/lib/module/impl/IAgoraMediaPlayerSourceImpl.js.map +1 -0
- package/lib/module/impl/IAgoraMediaRecorderImpl.js +45 -0
- package/lib/module/impl/IAgoraMediaRecorderImpl.js.map +1 -0
- package/lib/module/impl/IAgoraMusicContentCenterImpl.js +419 -0
- package/lib/module/impl/IAgoraMusicContentCenterImpl.js.map +1 -0
- package/lib/module/impl/IAgoraRtcEngineExImpl.js +1176 -0
- package/lib/module/impl/IAgoraRtcEngineExImpl.js.map +1 -0
- package/lib/module/impl/IAgoraRtcEngineImpl.js +5423 -0
- package/lib/module/impl/IAgoraRtcEngineImpl.js.map +1 -0
- package/lib/module/impl/IAgoraSpatialAudioImpl.js +356 -0
- package/lib/module/impl/IAgoraSpatialAudioImpl.js.map +1 -0
- package/lib/module/impl/IAudioDeviceManagerImpl.js +373 -0
- package/lib/module/impl/IAudioDeviceManagerImpl.js.map +1 -0
- package/lib/module/index.js +43 -0
- package/lib/module/index.js.map +1 -0
- package/lib/module/internal/AgoraH265TranscoderInternal.js +58 -0
- package/lib/module/internal/AgoraH265TranscoderInternal.js.map +1 -0
- package/lib/module/internal/AgoraMediaBaseInternal.js +13 -0
- package/lib/module/internal/AgoraMediaBaseInternal.js.map +1 -0
- package/lib/module/internal/AgoraPipInternal.js +92 -0
- package/lib/module/internal/AgoraPipInternal.js.map +1 -0
- package/lib/module/internal/IAgoraRtcRenderView.js +62 -0
- package/lib/module/internal/IAgoraRtcRenderView.js.map +1 -0
- package/lib/module/internal/IrisApiEngine.js +251 -0
- package/lib/module/internal/IrisApiEngine.js.map +1 -0
- package/lib/module/internal/LocalSpatialAudioEngineInternal.js +3 -0
- package/lib/module/internal/LocalSpatialAudioEngineInternal.js.map +1 -0
- package/lib/module/internal/MediaEngineInternal.js +116 -0
- package/lib/module/internal/MediaEngineInternal.js.map +1 -0
- package/lib/module/internal/MediaPlayerInternal.js +162 -0
- package/lib/module/internal/MediaPlayerInternal.js.map +1 -0
- package/lib/module/internal/MediaRecorderInternal.js +67 -0
- package/lib/module/internal/MediaRecorderInternal.js.map +1 -0
- package/lib/module/internal/MusicContentCenterInternal.js +134 -0
- package/lib/module/internal/MusicContentCenterInternal.js.map +1 -0
- package/lib/module/internal/RtcEngineExInternal.js +250 -0
- package/lib/module/internal/RtcEngineExInternal.js.map +1 -0
- package/lib/module/internal/call.js +126 -0
- package/lib/module/internal/call.js.map +1 -0
- package/lib/module/internal/event.js +25 -0
- package/lib/module/internal/event.js.map +1 -0
- package/lib/module/specs/AgoraRtcSurfaceViewNativeComponent.js +3 -0
- package/lib/module/specs/AgoraRtcSurfaceViewNativeComponent.js.map +1 -0
- package/lib/module/specs/AgoraRtcTextureViewNativeComponent.js +3 -0
- package/lib/module/specs/AgoraRtcTextureViewNativeComponent.js.map +1 -0
- package/lib/module/specs/NativeAgoraRtcNg.js +3 -0
- package/lib/module/specs/NativeAgoraRtcNg.js.map +1 -0
- package/lib/module/specs/index.js +16 -0
- package/lib/module/specs/index.js.map +1 -0
- package/lib/module/ti/AgoraBase-ti.js +16 -0
- package/lib/module/ti/AgoraBase-ti.js.map +1 -0
- package/lib/module/ti/AgoraMediaBase-ti.js +51 -0
- package/lib/module/ti/AgoraMediaBase-ti.js.map +1 -0
- package/lib/module/ti/AgoraMediaPlayerTypes-ti.js +9 -0
- package/lib/module/ti/AgoraMediaPlayerTypes-ti.js.map +1 -0
- package/lib/module/ti/AgoraPip-ti.js +14 -0
- package/lib/module/ti/AgoraPip-ti.js.map +1 -0
- package/lib/module/ti/IAgoraH265Transcoder-ti.js +16 -0
- package/lib/module/ti/IAgoraH265Transcoder-ti.js.map +1 -0
- package/lib/module/ti/IAgoraLog-ti.js +9 -0
- package/lib/module/ti/IAgoraLog-ti.js.map +1 -0
- package/lib/module/ti/IAgoraMediaEngine-ti.js +9 -0
- package/lib/module/ti/IAgoraMediaEngine-ti.js.map +1 -0
- package/lib/module/ti/IAgoraMediaPlayer-ti.js +14 -0
- package/lib/module/ti/IAgoraMediaPlayer-ti.js.map +1 -0
- package/lib/module/ti/IAgoraMediaPlayerSource-ti.js +26 -0
- package/lib/module/ti/IAgoraMediaPlayerSource-ti.js.map +1 -0
- package/lib/module/ti/IAgoraMediaRecorder-ti.js +9 -0
- package/lib/module/ti/IAgoraMediaRecorder-ti.js.map +1 -0
- package/lib/module/ti/IAgoraMediaStreamingSource-ti.js +9 -0
- package/lib/module/ti/IAgoraMediaStreamingSource-ti.js.map +1 -0
- package/lib/module/ti/IAgoraMusicContentCenter-ti.js +18 -0
- package/lib/module/ti/IAgoraMusicContentCenter-ti.js.map +1 -0
- package/lib/module/ti/IAgoraPip-ti.js +14 -0
- package/lib/module/ti/IAgoraPip-ti.js.map +1 -0
- package/lib/module/ti/IAgoraRhythmPlayer-ti.js +9 -0
- package/lib/module/ti/IAgoraRhythmPlayer-ti.js.map +1 -0
- package/lib/module/ti/IAgoraRtcEngine-ti.js +120 -0
- package/lib/module/ti/IAgoraRtcEngine-ti.js.map +1 -0
- package/lib/module/ti/IAgoraRtcEngineEx-ti.js +9 -0
- package/lib/module/ti/IAgoraRtcEngineEx-ti.js.map +1 -0
- package/lib/module/ti/IAgoraSpatialAudio-ti.js +9 -0
- package/lib/module/ti/IAgoraSpatialAudio-ti.js.map +1 -0
- package/lib/module/ti/IAudioDeviceManager-ti.js +9 -0
- package/lib/module/ti/IAudioDeviceManager-ti.js.map +1 -0
- package/lib/module/ti/Utils-ti.js +9 -0
- package/lib/module/ti/Utils-ti.js.map +1 -0
- package/lib/module/ti/index-ti.js +9 -0
- package/lib/module/ti/index-ti.js.map +1 -0
- package/lib/typescript/src/AgoraBase.d.ts +5728 -0
- package/lib/typescript/src/AgoraBase.d.ts.map +1 -0
- package/lib/typescript/src/AgoraMediaBase.d.ts +1717 -0
- package/lib/typescript/src/AgoraMediaBase.d.ts.map +1 -0
- package/lib/typescript/src/AgoraMediaPlayerTypes.d.ts +456 -0
- package/lib/typescript/src/AgoraMediaPlayerTypes.d.ts.map +1 -0
- package/lib/typescript/src/AgoraRtcRenderView.d.ts +60 -0
- package/lib/typescript/src/AgoraRtcRenderView.d.ts.map +1 -0
- package/lib/typescript/src/IAgoraH265Transcoder.d.ts +28 -0
- package/lib/typescript/src/IAgoraH265Transcoder.d.ts.map +1 -0
- package/lib/typescript/src/IAgoraLog.d.ts +89 -0
- package/lib/typescript/src/IAgoraLog.d.ts.map +1 -0
- package/lib/typescript/src/IAgoraMediaEngine.d.ts +255 -0
- package/lib/typescript/src/IAgoraMediaEngine.d.ts.map +1 -0
- package/lib/typescript/src/IAgoraMediaPlayer.d.ts +656 -0
- package/lib/typescript/src/IAgoraMediaPlayer.d.ts.map +1 -0
- package/lib/typescript/src/IAgoraMediaPlayerSource.d.ts +109 -0
- package/lib/typescript/src/IAgoraMediaPlayerSource.d.ts.map +1 -0
- package/lib/typescript/src/IAgoraMediaRecorder.d.ts +60 -0
- package/lib/typescript/src/IAgoraMediaRecorder.d.ts.map +1 -0
- package/lib/typescript/src/IAgoraMediaStreamingSource.d.ts +42 -0
- package/lib/typescript/src/IAgoraMediaStreamingSource.d.ts.map +1 -0
- package/lib/typescript/src/IAgoraMusicContentCenter.d.ts +604 -0
- package/lib/typescript/src/IAgoraMusicContentCenter.d.ts.map +1 -0
- package/lib/typescript/src/IAgoraPip.d.ts +257 -0
- package/lib/typescript/src/IAgoraPip.d.ts.map +1 -0
- package/lib/typescript/src/IAgoraRhythmPlayer.d.ts +65 -0
- package/lib/typescript/src/IAgoraRhythmPlayer.d.ts.map +1 -0
- package/lib/typescript/src/IAgoraRtcEngine.d.ts +6831 -0
- package/lib/typescript/src/IAgoraRtcEngine.d.ts.map +1 -0
- package/lib/typescript/src/IAgoraRtcEngineEx.d.ts +817 -0
- package/lib/typescript/src/IAgoraRtcEngineEx.d.ts.map +1 -0
- package/lib/typescript/src/IAgoraSpatialAudio.d.ts +194 -0
- package/lib/typescript/src/IAgoraSpatialAudio.d.ts.map +1 -0
- package/lib/typescript/src/IAudioDeviceManager.d.ts +155 -0
- package/lib/typescript/src/IAudioDeviceManager.d.ts.map +1 -0
- package/lib/typescript/src/Utils.d.ts +19 -0
- package/lib/typescript/src/Utils.d.ts.map +1 -0
- package/lib/typescript/src/extension/AgoraBaseExtension.d.ts +2 -0
- package/lib/typescript/src/extension/AgoraBaseExtension.d.ts.map +1 -0
- package/lib/typescript/src/extension/AgoraMediaBaseExtension.d.ts +2 -0
- package/lib/typescript/src/extension/AgoraMediaBaseExtension.d.ts.map +1 -0
- package/lib/typescript/src/extension/AgoraMediaPlayerTypesExtension.d.ts +2 -0
- package/lib/typescript/src/extension/AgoraMediaPlayerTypesExtension.d.ts.map +1 -0
- package/lib/typescript/src/extension/IAgoraH265TranscoderExtension.d.ts +24 -0
- package/lib/typescript/src/extension/IAgoraH265TranscoderExtension.d.ts.map +1 -0
- package/lib/typescript/src/extension/IAgoraLogExtension.d.ts +2 -0
- package/lib/typescript/src/extension/IAgoraLogExtension.d.ts.map +1 -0
- package/lib/typescript/src/extension/IAgoraMediaEngineExtension.d.ts +40 -0
- package/lib/typescript/src/extension/IAgoraMediaEngineExtension.d.ts.map +1 -0
- package/lib/typescript/src/extension/IAgoraMediaPlayerExtension.d.ts +46 -0
- package/lib/typescript/src/extension/IAgoraMediaPlayerExtension.d.ts.map +1 -0
- package/lib/typescript/src/extension/IAgoraMediaPlayerSourceExtension.d.ts +2 -0
- package/lib/typescript/src/extension/IAgoraMediaPlayerSourceExtension.d.ts.map +1 -0
- package/lib/typescript/src/extension/IAgoraMediaRecorderExtension.d.ts +44 -0
- package/lib/typescript/src/extension/IAgoraMediaRecorderExtension.d.ts.map +1 -0
- package/lib/typescript/src/extension/IAgoraMusicContentCenterExtension.d.ts +20 -0
- package/lib/typescript/src/extension/IAgoraMusicContentCenterExtension.d.ts.map +1 -0
- package/lib/typescript/src/extension/IAgoraPipExtension.d.ts +23 -0
- package/lib/typescript/src/extension/IAgoraPipExtension.d.ts.map +1 -0
- package/lib/typescript/src/extension/IAgoraRhythmPlayerExtension.d.ts +2 -0
- package/lib/typescript/src/extension/IAgoraRhythmPlayerExtension.d.ts.map +1 -0
- package/lib/typescript/src/extension/IAgoraRtcEngineExExtension.d.ts +2 -0
- package/lib/typescript/src/extension/IAgoraRtcEngineExExtension.d.ts.map +1 -0
- package/lib/typescript/src/extension/IAgoraRtcEngineExtension.d.ts +49 -0
- package/lib/typescript/src/extension/IAgoraRtcEngineExtension.d.ts.map +1 -0
- package/lib/typescript/src/extension/IAgoraSpatialAudioExtension.d.ts +2 -0
- package/lib/typescript/src/extension/IAgoraSpatialAudioExtension.d.ts.map +1 -0
- package/lib/typescript/src/extension/IAudioDeviceManagerExtension.d.ts +2 -0
- package/lib/typescript/src/extension/IAudioDeviceManagerExtension.d.ts.map +1 -0
- package/lib/typescript/src/impl/AgoraBaseImpl.d.ts +3 -0
- package/lib/typescript/src/impl/AgoraBaseImpl.d.ts.map +1 -0
- package/lib/typescript/src/impl/AgoraMediaBaseImpl.d.ts +14 -0
- package/lib/typescript/src/impl/AgoraMediaBaseImpl.d.ts.map +1 -0
- package/lib/typescript/src/impl/IAgoraH265TranscoderImpl.d.ts +15 -0
- package/lib/typescript/src/impl/IAgoraH265TranscoderImpl.d.ts.map +1 -0
- package/lib/typescript/src/impl/IAgoraMediaEngineImpl.d.ts +46 -0
- package/lib/typescript/src/impl/IAgoraMediaEngineImpl.d.ts.map +1 -0
- package/lib/typescript/src/impl/IAgoraMediaPlayerImpl.d.ts +145 -0
- package/lib/typescript/src/impl/IAgoraMediaPlayerImpl.d.ts.map +1 -0
- package/lib/typescript/src/impl/IAgoraMediaPlayerSourceImpl.d.ts +3 -0
- package/lib/typescript/src/impl/IAgoraMediaPlayerSourceImpl.d.ts.map +1 -0
- package/lib/typescript/src/impl/IAgoraMediaRecorderImpl.d.ts +11 -0
- package/lib/typescript/src/impl/IAgoraMediaRecorderImpl.d.ts.map +1 -0
- package/lib/typescript/src/impl/IAgoraMusicContentCenterImpl.d.ts +67 -0
- package/lib/typescript/src/impl/IAgoraMusicContentCenterImpl.d.ts.map +1 -0
- package/lib/typescript/src/impl/IAgoraRtcEngineExImpl.d.ts +128 -0
- package/lib/typescript/src/impl/IAgoraRtcEngineExImpl.d.ts.map +1 -0
- package/lib/typescript/src/impl/IAgoraRtcEngineImpl.d.ts +656 -0
- package/lib/typescript/src/impl/IAgoraRtcEngineImpl.d.ts.map +1 -0
- package/lib/typescript/src/impl/IAgoraSpatialAudioImpl.d.ts +47 -0
- package/lib/typescript/src/impl/IAgoraSpatialAudioImpl.d.ts.map +1 -0
- package/lib/typescript/src/impl/IAudioDeviceManagerImpl.d.ts +65 -0
- package/lib/typescript/src/impl/IAudioDeviceManagerImpl.d.ts.map +1 -0
- package/lib/typescript/src/index.d.ts +31 -0
- package/lib/typescript/src/index.d.ts.map +1 -0
- package/lib/typescript/src/internal/AgoraH265TranscoderInternal.d.ts +14 -0
- package/lib/typescript/src/internal/AgoraH265TranscoderInternal.d.ts.map +1 -0
- package/lib/typescript/src/internal/AgoraMediaBaseInternal.d.ts +8 -0
- package/lib/typescript/src/internal/AgoraMediaBaseInternal.d.ts.map +1 -0
- package/lib/typescript/src/internal/AgoraPipInternal.d.ts +21 -0
- package/lib/typescript/src/internal/AgoraPipInternal.d.ts.map +1 -0
- package/lib/typescript/src/internal/IAgoraRtcRenderView.d.ts +13 -0
- package/lib/typescript/src/internal/IAgoraRtcRenderView.d.ts.map +1 -0
- package/lib/typescript/src/internal/IrisApiEngine.d.ts +12 -0
- package/lib/typescript/src/internal/IrisApiEngine.d.ts.map +1 -0
- package/lib/typescript/src/internal/LocalSpatialAudioEngineInternal.d.ts +4 -0
- package/lib/typescript/src/internal/LocalSpatialAudioEngineInternal.d.ts.map +1 -0
- package/lib/typescript/src/internal/MediaEngineInternal.d.ts +23 -0
- package/lib/typescript/src/internal/MediaEngineInternal.d.ts.map +1 -0
- package/lib/typescript/src/internal/MediaPlayerInternal.d.ts +28 -0
- package/lib/typescript/src/internal/MediaPlayerInternal.d.ts.map +1 -0
- package/lib/typescript/src/internal/MediaRecorderInternal.d.ts +16 -0
- package/lib/typescript/src/internal/MediaRecorderInternal.d.ts.map +1 -0
- package/lib/typescript/src/internal/MusicContentCenterInternal.d.ts +31 -0
- package/lib/typescript/src/internal/MusicContentCenterInternal.d.ts.map +1 -0
- package/lib/typescript/src/internal/RtcEngineExInternal.d.ts +62 -0
- package/lib/typescript/src/internal/RtcEngineExInternal.d.ts.map +1 -0
- package/lib/typescript/src/internal/call.d.ts +5 -0
- package/lib/typescript/src/internal/call.d.ts.map +1 -0
- package/lib/typescript/src/internal/event.d.ts +58 -0
- package/lib/typescript/src/internal/event.d.ts.map +1 -0
- package/lib/typescript/src/specs/AgoraRtcSurfaceViewNativeComponent.d.ts +13 -0
- package/lib/typescript/src/specs/AgoraRtcSurfaceViewNativeComponent.d.ts.map +1 -0
- package/lib/typescript/src/specs/AgoraRtcTextureViewNativeComponent.d.ts +11 -0
- package/lib/typescript/src/specs/AgoraRtcTextureViewNativeComponent.d.ts.map +1 -0
- package/lib/typescript/src/specs/NativeAgoraRtcNg.d.ts +23 -0
- package/lib/typescript/src/specs/NativeAgoraRtcNg.d.ts.map +1 -0
- package/lib/typescript/src/specs/index.d.ts +3 -0
- package/lib/typescript/src/specs/index.d.ts.map +1 -0
- package/lib/typescript/src/ti/AgoraBase-ti.d.ts +8 -0
- package/lib/typescript/src/ti/AgoraBase-ti.d.ts.map +1 -0
- package/lib/typescript/src/ti/AgoraMediaBase-ti.d.ts +15 -0
- package/lib/typescript/src/ti/AgoraMediaBase-ti.d.ts.map +1 -0
- package/lib/typescript/src/ti/AgoraMediaPlayerTypes-ti.d.ts +7 -0
- package/lib/typescript/src/ti/AgoraMediaPlayerTypes-ti.d.ts.map +1 -0
- package/lib/typescript/src/ti/AgoraPip-ti.d.ts +8 -0
- package/lib/typescript/src/ti/AgoraPip-ti.d.ts.map +1 -0
- package/lib/typescript/src/ti/IAgoraH265Transcoder-ti.d.ts +8 -0
- package/lib/typescript/src/ti/IAgoraH265Transcoder-ti.d.ts.map +1 -0
- package/lib/typescript/src/ti/IAgoraLog-ti.d.ts +7 -0
- package/lib/typescript/src/ti/IAgoraLog-ti.d.ts.map +1 -0
- package/lib/typescript/src/ti/IAgoraMediaEngine-ti.d.ts +7 -0
- package/lib/typescript/src/ti/IAgoraMediaEngine-ti.d.ts.map +1 -0
- package/lib/typescript/src/ti/IAgoraMediaPlayer-ti.d.ts +8 -0
- package/lib/typescript/src/ti/IAgoraMediaPlayer-ti.d.ts.map +1 -0
- package/lib/typescript/src/ti/IAgoraMediaPlayerSource-ti.d.ts +8 -0
- package/lib/typescript/src/ti/IAgoraMediaPlayerSource-ti.d.ts.map +1 -0
- package/lib/typescript/src/ti/IAgoraMediaRecorder-ti.d.ts +7 -0
- package/lib/typescript/src/ti/IAgoraMediaRecorder-ti.d.ts.map +1 -0
- package/lib/typescript/src/ti/IAgoraMediaStreamingSource-ti.d.ts +7 -0
- package/lib/typescript/src/ti/IAgoraMediaStreamingSource-ti.d.ts.map +1 -0
- package/lib/typescript/src/ti/IAgoraMusicContentCenter-ti.d.ts +8 -0
- package/lib/typescript/src/ti/IAgoraMusicContentCenter-ti.d.ts.map +1 -0
- package/lib/typescript/src/ti/IAgoraPip-ti.d.ts +8 -0
- package/lib/typescript/src/ti/IAgoraPip-ti.d.ts.map +1 -0
- package/lib/typescript/src/ti/IAgoraRhythmPlayer-ti.d.ts +7 -0
- package/lib/typescript/src/ti/IAgoraRhythmPlayer-ti.d.ts.map +1 -0
- package/lib/typescript/src/ti/IAgoraRtcEngine-ti.d.ts +10 -0
- package/lib/typescript/src/ti/IAgoraRtcEngine-ti.d.ts.map +1 -0
- package/lib/typescript/src/ti/IAgoraRtcEngineEx-ti.d.ts +7 -0
- package/lib/typescript/src/ti/IAgoraRtcEngineEx-ti.d.ts.map +1 -0
- package/lib/typescript/src/ti/IAgoraSpatialAudio-ti.d.ts +7 -0
- package/lib/typescript/src/ti/IAgoraSpatialAudio-ti.d.ts.map +1 -0
- package/lib/typescript/src/ti/IAudioDeviceManager-ti.d.ts +7 -0
- package/lib/typescript/src/ti/IAudioDeviceManager-ti.d.ts.map +1 -0
- package/lib/typescript/src/ti/Utils-ti.d.ts +7 -0
- package/lib/typescript/src/ti/Utils-ti.d.ts.map +1 -0
- package/lib/typescript/src/ti/index-ti.d.ts +7 -0
- package/lib/typescript/src/ti/index-ti.d.ts.map +1 -0
- package/package.json +175 -0
- package/react-native-agora.podspec +50 -0
- package/src/AgoraBase.ts +5941 -0
- package/src/AgoraMediaBase.ts +1814 -0
- package/src/AgoraMediaPlayerTypes.ts +467 -0
- package/src/AgoraRtcRenderView.tsx +72 -0
- package/src/IAgoraH265Transcoder.ts +73 -0
- package/src/IAgoraLog.ts +91 -0
- package/src/IAgoraMediaEngine.ts +321 -0
- package/src/IAgoraMediaPlayer.ts +753 -0
- package/src/IAgoraMediaPlayerSource.ts +137 -0
- package/src/IAgoraMediaRecorder.ts +65 -0
- package/src/IAgoraMediaStreamingSource.ts +81 -0
- package/src/IAgoraMusicContentCenter.ts +678 -0
- package/src/IAgoraPip.ts +295 -0
- package/src/IAgoraRhythmPlayer.ts +67 -0
- package/src/IAgoraRtcEngine.ts +8100 -0
- package/src/IAgoraRtcEngineEx.ts +1108 -0
- package/src/IAgoraSpatialAudio.ts +248 -0
- package/src/IAudioDeviceManager.ts +185 -0
- package/src/Utils.ts +35 -0
- package/src/extension/AgoraBaseExtension.ts +1 -0
- package/src/extension/AgoraMediaBaseExtension.ts +1 -0
- package/src/extension/AgoraMediaPlayerTypesExtension.ts +1 -0
- package/src/extension/IAgoraH265TranscoderExtension.ts +39 -0
- package/src/extension/IAgoraLogExtension.ts +1 -0
- package/src/extension/IAgoraMediaEngineExtension.ts +62 -0
- package/src/extension/IAgoraMediaPlayerExtension.ts +64 -0
- package/src/extension/IAgoraMediaPlayerSourceExtension.ts +1 -0
- package/src/extension/IAgoraMediaRecorderExtension.ts +59 -0
- package/src/extension/IAgoraMusicContentCenterExtension.ts +34 -0
- package/src/extension/IAgoraPipExtension.ts +37 -0
- package/src/extension/IAgoraRhythmPlayerExtension.ts +1 -0
- package/src/extension/IAgoraRtcEngineExExtension.ts +1 -0
- package/src/extension/IAgoraRtcEngineExtension.ts +72 -0
- package/src/extension/IAgoraSpatialAudioExtension.ts +1 -0
- package/src/extension/IAudioDeviceManagerExtension.ts +1 -0
- package/src/impl/AgoraBaseImpl.ts +39 -0
- package/src/impl/AgoraMediaBaseImpl.ts +238 -0
- package/src/impl/IAgoraH265TranscoderImpl.ts +152 -0
- package/src/impl/IAgoraMediaEngineImpl.ts +490 -0
- package/src/impl/IAgoraMediaPlayerImpl.ts +1180 -0
- package/src/impl/IAgoraMediaPlayerSourceImpl.ts +94 -0
- package/src/impl/IAgoraMediaRecorderImpl.ts +58 -0
- package/src/impl/IAgoraMusicContentCenterImpl.ts +561 -0
- package/src/impl/IAgoraRtcEngineExImpl.ts +1911 -0
- package/src/impl/IAgoraRtcEngineImpl.ts +7737 -0
- package/src/impl/IAgoraSpatialAudioImpl.ts +494 -0
- package/src/impl/IAudioDeviceManagerImpl.ts +442 -0
- package/src/index.ts +53 -0
- package/src/internal/AgoraH265TranscoderInternal.ts +93 -0
- package/src/internal/AgoraMediaBaseInternal.ts +15 -0
- package/src/internal/AgoraPipInternal.ts +136 -0
- package/src/internal/IAgoraRtcRenderView.tsx +79 -0
- package/src/internal/IrisApiEngine.ts +337 -0
- package/src/internal/LocalSpatialAudioEngineInternal.ts +3 -0
- package/src/internal/MediaEngineInternal.ts +187 -0
- package/src/internal/MediaPlayerInternal.ts +282 -0
- package/src/internal/MediaRecorderInternal.ts +96 -0
- package/src/internal/MusicContentCenterInternal.ts +204 -0
- package/src/internal/RtcEngineExInternal.ts +443 -0
- package/src/internal/call.ts +140 -0
- package/src/internal/event.ts +100 -0
- package/src/specs/AgoraRtcSurfaceViewNativeComponent.ts +16 -0
- package/src/specs/AgoraRtcTextureViewNativeComponent.ts +14 -0
- package/src/specs/NativeAgoraRtcNg.ts +40 -0
- package/src/specs/index.ts +26 -0
- package/src/ti/AgoraBase-ti.ts +16 -0
- package/src/ti/AgoraMediaBase-ti.ts +58 -0
- package/src/ti/AgoraMediaPlayerTypes-ti.ts +11 -0
- package/src/ti/AgoraPip-ti.ts +14 -0
- package/src/ti/IAgoraH265Transcoder-ti.ts +16 -0
- package/src/ti/IAgoraLog-ti.ts +11 -0
- package/src/ti/IAgoraMediaEngine-ti.ts +11 -0
- package/src/ti/IAgoraMediaPlayer-ti.ts +14 -0
- package/src/ti/IAgoraMediaPlayerSource-ti.ts +26 -0
- package/src/ti/IAgoraMediaRecorder-ti.ts +11 -0
- package/src/ti/IAgoraMediaStreamingSource-ti.ts +11 -0
- package/src/ti/IAgoraMusicContentCenter-ti.ts +18 -0
- package/src/ti/IAgoraPip-ti.ts +14 -0
- package/src/ti/IAgoraRhythmPlayer-ti.ts +11 -0
- package/src/ti/IAgoraRtcEngine-ti.ts +122 -0
- package/src/ti/IAgoraRtcEngineEx-ti.ts +11 -0
- package/src/ti/IAgoraSpatialAudio-ti.ts +11 -0
- package/src/ti/IAudioDeviceManager-ti.ts +11 -0
- package/src/ti/Utils-ti.ts +11 -0
- package/src/ti/index-ti.ts +11 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,755 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
## 4.6.2-rc.2 (2026-02-28)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* add `requiresMainQueueSetup` for iOS [#583](https://github.com/AgoraIO-Extensions/react-native-agora/issues/583) ([#603](https://github.com/AgoraIO-Extensions/react-native-agora/issues/603)) ([8907a77](https://github.com/AgoraIO-Extensions/react-native-agora/commit/8907a77c21301dbdd1b2167d24584d3393fcecf6))
|
|
9
|
+
* add `setDualStreamMode` method ([e020e8d](https://github.com/AgoraIO-Extensions/react-native-agora/commit/e020e8da40ef2ea3081a58ab0633f9744a11fa56))
|
|
10
|
+
* call api pass chinese will cause error csd-71388 ([#867](https://github.com/AgoraIO-Extensions/react-native-agora/issues/867)) ([8826059](https://github.com/AgoraIO-Extensions/react-native-agora/commit/88260593173a8da4f318a7ed1de7efd58ead7a93))
|
|
11
|
+
* can not upload to app store because of `CFBundleShortVersionString` not correct ([#716](https://github.com/AgoraIO-Extensions/react-native-agora/issues/716)) ([a358f0c](https://github.com/AgoraIO-Extensions/react-native-agora/commit/a358f0cd210f9c3faa0b8dbb85707ff08333f527))
|
|
12
|
+
* crash after release [#579](https://github.com/AgoraIO-Extensions/react-native-agora/issues/579) ([5ce327e](https://github.com/AgoraIO-Extensions/react-native-agora/commit/5ce327eef4549ccd57a15e4e594b82d72ee784ed))
|
|
13
|
+
* example crash NMS-16331 ([#714](https://github.com/AgoraIO-Extensions/react-native-agora/issues/714)) ([f819293](https://github.com/AgoraIO-Extensions/react-native-agora/commit/f819293b9e123448e541cf40ded3edb19b805833)), closes [#716](https://github.com/AgoraIO-Extensions/react-native-agora/issues/716)
|
|
14
|
+
* picture in picture issue in iOS ([b825c78](https://github.com/AgoraIO-Extensions/react-native-agora/commit/b825c787cf8daaed1b23842499d496b85e31dacb))
|
|
15
|
+
* proguard issue [#739](https://github.com/AgoraIO-Extensions/react-native-agora/issues/739) ([0c5f0d0](https://github.com/AgoraIO-Extensions/react-native-agora/commit/0c5f0d000f72cb4294c76bf46b59826536e82341))
|
|
16
|
+
* script ([#885](https://github.com/AgoraIO-Extensions/react-native-agora/issues/885)) ([4dbdffd](https://github.com/AgoraIO-Extensions/react-native-agora/commit/4dbdffd7682ddac1e8541f61a99866d4ab5db75d))
|
|
17
|
+
* some AudioFrameObserver & VideoFrameObserver issue ([7d20f82](https://github.com/AgoraIO-Extensions/react-native-agora/commit/7d20f82047e9625d5f61f3305d1d91a325911892))
|
|
18
|
+
* the event which named contains `Ex` not triggered issue (such as `onTokenPrivilegeWillExpire`) ([6352cfd](https://github.com/AgoraIO-Extensions/react-native-agora/commit/6352cfd7391b34b2b725474d55a8dcca8565bac3))
|
|
19
|
+
* The issue of call API with an invalid data type may cause crash ([#847](https://github.com/AgoraIO-Extensions/react-native-agora/issues/847)) ([e94f4f2](https://github.com/AgoraIO-Extensions/react-native-agora/commit/e94f4f2e380a458de07f14f33ab14d79cf043b24))
|
|
20
|
+
* typescript definitions broken [#718](https://github.com/AgoraIO-Extensions/react-native-agora/issues/718) ([#719](https://github.com/AgoraIO-Extensions/react-native-agora/issues/719)) ([11c6b3d](https://github.com/AgoraIO-Extensions/react-native-agora/commit/11c6b3d5b626b91a589b8cf75ef26e0a18ca5ed2))
|
|
21
|
+
* yarn failed on windows ([#720](https://github.com/AgoraIO-Extensions/react-native-agora/issues/720)) ([f2e2496](https://github.com/AgoraIO-Extensions/react-native-agora/commit/f2e2496e042637a2252fd675e55176538f6296e2))
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
### Features
|
|
25
|
+
|
|
26
|
+
* expo example ([#886](https://github.com/AgoraIO-Extensions/react-native-agora/issues/886)) ([f5bdea0](https://github.com/AgoraIO-Extensions/react-native-agora/commit/f5bdea071d9251d9e8b233f0c4a0aeaeb169c6dc))
|
|
27
|
+
* support 4.1.0 ([35df959](https://github.com/AgoraIO-Extensions/react-native-agora/commit/35df959af89929716a2fc2d5c597344abd2651ba)), closes [#538](https://github.com/AgoraIO-Extensions/react-native-agora/issues/538) [#539](https://github.com/AgoraIO-Extensions/react-native-agora/issues/539) [#554](https://github.com/AgoraIO-Extensions/react-native-agora/issues/554) [#559](https://github.com/AgoraIO-Extensions/react-native-agora/issues/559)
|
|
28
|
+
* support 4.2.0 ([#647](https://github.com/AgoraIO-Extensions/react-native-agora/issues/647)) ([e959dac](https://github.com/AgoraIO-Extensions/react-native-agora/commit/e959dac51911f842efac4de6fd01897d06defbee)), closes [#624](https://github.com/AgoraIO-Extensions/react-native-agora/issues/624) [#626](https://github.com/AgoraIO-Extensions/react-native-agora/issues/626) [#628](https://github.com/AgoraIO-Extensions/react-native-agora/issues/628) [#629](https://github.com/AgoraIO-Extensions/react-native-agora/issues/629) [#630](https://github.com/AgoraIO-Extensions/react-native-agora/issues/630) [#635](https://github.com/AgoraIO-Extensions/react-native-agora/issues/635) [#638](https://github.com/AgoraIO-Extensions/react-native-agora/issues/638) [#642](https://github.com/AgoraIO-Extensions/react-native-agora/issues/642)
|
|
29
|
+
* support 4.2.0 ([#656](https://github.com/AgoraIO-Extensions/react-native-agora/issues/656)) ([d4fcbbe](https://github.com/AgoraIO-Extensions/react-native-agora/commit/d4fcbbe706ca016408d4958c5cac659cbc199308)), closes [#624](https://github.com/AgoraIO-Extensions/react-native-agora/issues/624) [#626](https://github.com/AgoraIO-Extensions/react-native-agora/issues/626) [#628](https://github.com/AgoraIO-Extensions/react-native-agora/issues/628) [#629](https://github.com/AgoraIO-Extensions/react-native-agora/issues/629) [#630](https://github.com/AgoraIO-Extensions/react-native-agora/issues/630) [#635](https://github.com/AgoraIO-Extensions/react-native-agora/issues/635) [#638](https://github.com/AgoraIO-Extensions/react-native-agora/issues/638) [#642](https://github.com/AgoraIO-Extensions/react-native-agora/issues/642)
|
|
30
|
+
* support 4.2.3 ([#705](https://github.com/AgoraIO-Extensions/react-native-agora/issues/705)) ([416bcfa](https://github.com/AgoraIO-Extensions/react-native-agora/commit/416bcfad17bbf18d828d20e24036d082d7df99ff)), closes [#703](https://github.com/AgoraIO-Extensions/react-native-agora/issues/703) [#704](https://github.com/AgoraIO-Extensions/react-native-agora/issues/704) [#706](https://github.com/AgoraIO-Extensions/react-native-agora/issues/706) [#709](https://github.com/AgoraIO-Extensions/react-native-agora/issues/709) [#711](https://github.com/AgoraIO-Extensions/react-native-agora/issues/711) [#708](https://github.com/AgoraIO-Extensions/react-native-agora/issues/708)
|
|
31
|
+
* support 4.3.0 ([#748](https://github.com/AgoraIO-Extensions/react-native-agora/issues/748)) ([8ed72a2](https://github.com/AgoraIO-Extensions/react-native-agora/commit/8ed72a2d5c3e4b26c944b80f1745d561feae1337)), closes [#768](https://github.com/AgoraIO-Extensions/react-native-agora/issues/768)
|
|
32
|
+
* support 4.4.0 ([#795](https://github.com/AgoraIO-Extensions/react-native-agora/issues/795)) ([1fbe4c6](https://github.com/AgoraIO-Extensions/react-native-agora/commit/1fbe4c6ef934c70c6effd137c514977c9e731509))
|
|
33
|
+
* support 4.5.0 ([#837](https://github.com/AgoraIO-Extensions/react-native-agora/issues/837)) ([8c8452d](https://github.com/AgoraIO-Extensions/react-native-agora/commit/8c8452df8884602cfb131476ac406c979590290c)), closes [#823](https://github.com/AgoraIO-Extensions/react-native-agora/issues/823) [#827](https://github.com/AgoraIO-Extensions/react-native-agora/issues/827) [#833](https://github.com/AgoraIO-Extensions/react-native-agora/issues/833) [#841](https://github.com/AgoraIO-Extensions/react-native-agora/issues/841)
|
|
34
|
+
* support native 4.0.0-rc.1 ([e1d11fd](https://github.com/AgoraIO-Extensions/react-native-agora/commit/e1d11fd5b6a0d36b50c6b0fa59c24219dd1c342d))
|
|
35
|
+
* support native 4.2.1 ([#670](https://github.com/AgoraIO-Extensions/react-native-agora/issues/670)) ([fa07094](https://github.com/AgoraIO-Extensions/react-native-agora/commit/fa070940e0466c15511c3cb5a0618236e2258c9b))
|
|
36
|
+
* support native 4.2.2 ([#676](https://github.com/AgoraIO-Extensions/react-native-agora/issues/676)) ([6a3211c](https://github.com/AgoraIO-Extensions/react-native-agora/commit/6a3211c3142ee22bf9de5d027cb2ac85a34d0b59)), closes [#666](https://github.com/AgoraIO-Extensions/react-native-agora/issues/666) [#667](https://github.com/AgoraIO-Extensions/react-native-agora/issues/667) [#675](https://github.com/AgoraIO-Extensions/react-native-agora/issues/675) [#681](https://github.com/AgoraIO-Extensions/react-native-agora/issues/681) [#684](https://github.com/AgoraIO-Extensions/react-native-agora/issues/684)
|
|
37
|
+
* support native 4.2.6 ([#735](https://github.com/AgoraIO-Extensions/react-native-agora/issues/735)) ([40634a2](https://github.com/AgoraIO-Extensions/react-native-agora/commit/40634a2f708e163814de7f580d34eebed72632f9)), closes [#733](https://github.com/AgoraIO-Extensions/react-native-agora/issues/733)
|
|
38
|
+
* support native 4.3.1 ([#769](https://github.com/AgoraIO-Extensions/react-native-agora/issues/769)) ([a05c57d](https://github.com/AgoraIO-Extensions/react-native-agora/commit/a05c57d414c771206aec64fc25d9e84156c9ef98)), closes [#778](https://github.com/AgoraIO-Extensions/react-native-agora/issues/778) [#780](https://github.com/AgoraIO-Extensions/react-native-agora/issues/780) [#781](https://github.com/AgoraIO-Extensions/react-native-agora/issues/781) [#784](https://github.com/AgoraIO-Extensions/react-native-agora/issues/784)
|
|
39
|
+
* support native 4.3.2 ([#789](https://github.com/AgoraIO-Extensions/react-native-agora/issues/789)) ([a3a2720](https://github.com/AgoraIO-Extensions/react-native-agora/commit/a3a2720af9f01257863246ff3603f2d18c5ee03b))
|
|
40
|
+
* support native 4.5.1 ([#859](https://github.com/AgoraIO-Extensions/react-native-agora/issues/859)) ([7157eea](https://github.com/AgoraIO-Extensions/react-native-agora/commit/7157eeae3e585cb0664f3225d2d5455f7e69dedf)), closes [#857](https://github.com/AgoraIO-Extensions/react-native-agora/issues/857)
|
|
41
|
+
* support native 4.5.3 ([#872](https://github.com/AgoraIO-Extensions/react-native-agora/issues/872)) ([cde1db8](https://github.com/AgoraIO-Extensions/react-native-agora/commit/cde1db8d5947668421ad8bd253681564978c44c4))
|
|
42
|
+
* support new arch ([#608](https://github.com/AgoraIO-Extensions/react-native-agora/issues/608)) ([25ff823](https://github.com/AgoraIO-Extensions/react-native-agora/commit/25ff8233d543f47bbb75ce9b134f3defa286fcbf))
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
### Reverts
|
|
46
|
+
|
|
47
|
+
* Revert "feat: support 4.2.0 (#647)" (#655) ([256ce52](https://github.com/AgoraIO-Extensions/react-native-agora/commit/256ce523a951341138e0a718f36fe0a7fcc0b1d3)), closes [#647](https://github.com/AgoraIO-Extensions/react-native-agora/issues/647) [#655](https://github.com/AgoraIO-Extensions/react-native-agora/issues/655)
|
|
48
|
+
|
|
49
|
+
## [4.6.2-rc.1](https://github.com/AgoraIO-Extensions/react-native-agora/compare/v4.5.2-build.2-rc.1...v4.6.2-rc.1) (2026-02-12)
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
### Features
|
|
53
|
+
|
|
54
|
+
* expo example ([#886](https://github.com/AgoraIO-Extensions/react-native-agora/issues/886)) ([f5bdea0](https://github.com/AgoraIO-Extensions/react-native-agora/commit/f5bdea071d9251d9e8b233f0c4a0aeaeb169c6dc))
|
|
55
|
+
|
|
56
|
+
## [4.5.2-build.2-rc.1](https://github.com/AgoraIO-Extensions/react-native-agora/compare/v4.5.2-build.140-rc.2...v4.5.2-build.2-rc.1) (2025-09-30)
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
### Bug Fixes
|
|
60
|
+
|
|
61
|
+
* script ([#885](https://github.com/AgoraIO-Extensions/react-native-agora/issues/885)) ([4dbdffd](https://github.com/AgoraIO-Extensions/react-native-agora/commit/4dbdffd7682ddac1e8541f61a99866d4ab5db75d))
|
|
62
|
+
|
|
63
|
+
## [4.5.2-build.140-rc.2](https://github.com/AgoraIO-Extensions/react-native-agora/compare/v4.5.2-build.140-rc.1...v4.5.2-build.140-rc.2) (2025-07-07)
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
### Bug Fixes
|
|
67
|
+
|
|
68
|
+
* picture in picture issue in iOS ([b825c78](https://github.com/AgoraIO-Extensions/react-native-agora/commit/b825c787cf8daaed1b23842499d496b85e31dacb))
|
|
69
|
+
|
|
70
|
+
## [4.5.2-build.140-rc.1](https://github.com/AgoraIO-Extensions/react-native-agora/compare/v4.5.3...v4.5.2-build.140-rc.1) (2025-07-04)
|
|
71
|
+
|
|
72
|
+
## [4.5.3](https://github.com/AgoraIO-Extensions/react-native-agora/compare/v4.5.2...v4.5.3) (2025-05-07)
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
### Bug Fixes
|
|
76
|
+
|
|
77
|
+
* call api pass chinese will cause error csd-71388 ([#867](https://github.com/AgoraIO-Extensions/react-native-agora/issues/867)) ([8826059](https://github.com/AgoraIO-Extensions/react-native-agora/commit/88260593173a8da4f318a7ed1de7efd58ead7a93))
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
### Features
|
|
81
|
+
|
|
82
|
+
* support native 4.5.3 ([#872](https://github.com/AgoraIO-Extensions/react-native-agora/issues/872)) ([cde1db8](https://github.com/AgoraIO-Extensions/react-native-agora/commit/cde1db8d5947668421ad8bd253681564978c44c4))
|
|
83
|
+
|
|
84
|
+
## [4.5.2](https://github.com/AgoraIO-Extensions/react-native-agora/compare/v4.5.1...v4.5.2) (2025-03-11)
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
### Features
|
|
88
|
+
|
|
89
|
+
* support native 4.5.1 ([#859](https://github.com/AgoraIO-Extensions/react-native-agora/issues/859)) ([7157eea](https://github.com/AgoraIO-Extensions/react-native-agora/commit/7157eeae3e585cb0664f3225d2d5455f7e69dedf)), closes [#857](https://github.com/AgoraIO-Extensions/react-native-agora/issues/857)
|
|
90
|
+
|
|
91
|
+
## [4.5.1](https://github.com/AgoraIO-Extensions/react-native-agora/compare/v4.5.0...v4.5.1) (2025-01-03)
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
### Bug Fixes
|
|
95
|
+
|
|
96
|
+
* The issue of call API with an invalid data type may cause crash ([#847](https://github.com/AgoraIO-Extensions/react-native-agora/issues/847)) ([e94f4f2](https://github.com/AgoraIO-Extensions/react-native-agora/commit/e94f4f2e380a458de07f14f33ab14d79cf043b24))
|
|
97
|
+
|
|
98
|
+
# [4.5.0](https://github.com/AgoraIO-Extensions/react-native-agora/compare/v4.4.0...v4.5.0) (2024-12-10)
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
### Features
|
|
102
|
+
|
|
103
|
+
* support 4.5.0 ([#837](https://github.com/AgoraIO-Extensions/react-native-agora/issues/837)) ([8c8452d](https://github.com/AgoraIO-Extensions/react-native-agora/commit/8c8452df8884602cfb131476ac406c979590290c)), closes [#823](https://github.com/AgoraIO-Extensions/react-native-agora/issues/823) [#827](https://github.com/AgoraIO-Extensions/react-native-agora/issues/827) [#833](https://github.com/AgoraIO-Extensions/react-native-agora/issues/833) [#841](https://github.com/AgoraIO-Extensions/react-native-agora/issues/841)
|
|
104
|
+
|
|
105
|
+
# [4.4.0](https://github.com/AgoraIO-Extensions/react-native-agora/compare/v4.3.2...v4.4.0) (2024-08-29)
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
### Features
|
|
109
|
+
|
|
110
|
+
* support 4.4.0 ([#795](https://github.com/AgoraIO-Extensions/react-native-agora/issues/795)) ([1fbe4c6](https://github.com/AgoraIO-Extensions/react-native-agora/commit/1fbe4c6ef934c70c6effd137c514977c9e731509))
|
|
111
|
+
|
|
112
|
+
## [4.3.2](https://github.com/AgoraIO-Extensions/react-native-agora/compare/v4.3.1...v4.3.2) (2024-06-06)
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
### Features
|
|
116
|
+
|
|
117
|
+
* support native 4.3.2 ([#789](https://github.com/AgoraIO-Extensions/react-native-agora/issues/789)) ([a3a2720](https://github.com/AgoraIO-Extensions/react-native-agora/commit/a3a2720af9f01257863246ff3603f2d18c5ee03b))
|
|
118
|
+
|
|
119
|
+
## [4.3.1](https://github.com/AgoraIO-Extensions/react-native-agora/compare/v4.3.0...v4.3.1) (2024-05-09)
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
### Features
|
|
123
|
+
|
|
124
|
+
* support native 4.3.1 ([#769](https://github.com/AgoraIO-Extensions/react-native-agora/issues/769)) ([a05c57d](https://github.com/AgoraIO-Extensions/react-native-agora/commit/a05c57d414c771206aec64fc25d9e84156c9ef98)), closes [#778](https://github.com/AgoraIO-Extensions/react-native-agora/issues/778) [#780](https://github.com/AgoraIO-Extensions/react-native-agora/issues/780) [#781](https://github.com/AgoraIO-Extensions/react-native-agora/issues/781) [#784](https://github.com/AgoraIO-Extensions/react-native-agora/issues/784)
|
|
125
|
+
|
|
126
|
+
# [4.3.0](https://github.com/AgoraIO-Extensions/react-native-agora/compare/v4.2.6...v4.3.0) (2024-02-28)
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
### Features
|
|
130
|
+
|
|
131
|
+
* support 4.3.0 ([#748](https://github.com/AgoraIO-Extensions/react-native-agora/issues/748)) ([8ed72a2](https://github.com/AgoraIO-Extensions/react-native-agora/commit/8ed72a2d5c3e4b26c944b80f1745d561feae1337)), closes [#768](https://github.com/AgoraIO-Extensions/react-native-agora/issues/768)
|
|
132
|
+
|
|
133
|
+
## [4.2.6](https://github.com/AgoraIO-Extensions/react-native-agora/compare/v4.2.5...v4.2.6) (2023-11-21)
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
### Bug Fixes
|
|
137
|
+
|
|
138
|
+
* proguard issue [#739](https://github.com/AgoraIO-Extensions/react-native-agora/issues/739) ([0c5f0d0](https://github.com/AgoraIO-Extensions/react-native-agora/commit/0c5f0d000f72cb4294c76bf46b59826536e82341))
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
### Features
|
|
142
|
+
|
|
143
|
+
* support native 4.2.6 ([#735](https://github.com/AgoraIO-Extensions/react-native-agora/issues/735)) ([40634a2](https://github.com/AgoraIO-Extensions/react-native-agora/commit/40634a2f708e163814de7f580d34eebed72632f9)), closes [#733](https://github.com/AgoraIO-Extensions/react-native-agora/issues/733)
|
|
144
|
+
|
|
145
|
+
## [4.2.5](https://github.com/AgoraIO-Extensions/react-native-agora/compare/v4.2.4...v4.2.5) (2023-10-30)
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
### Bug Fixes
|
|
149
|
+
|
|
150
|
+
* typescript definitions broken [#718](https://github.com/AgoraIO-Extensions/react-native-agora/issues/718) ([#719](https://github.com/AgoraIO-Extensions/react-native-agora/issues/719)) ([11c6b3d](https://github.com/AgoraIO-Extensions/react-native-agora/commit/11c6b3d5b626b91a589b8cf75ef26e0a18ca5ed2))
|
|
151
|
+
* yarn failed on windows ([#720](https://github.com/AgoraIO-Extensions/react-native-agora/issues/720)) ([f2e2496](https://github.com/AgoraIO-Extensions/react-native-agora/commit/f2e2496e042637a2252fd675e55176538f6296e2))
|
|
152
|
+
|
|
153
|
+
## [4.2.4](https://github.com/AgoraIO-Extensions/react-native-agora/compare/v4.2.3...v4.2.4) (2023-10-24)
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
### Bug Fixes
|
|
157
|
+
|
|
158
|
+
* can not upload to app store because of `CFBundleShortVersionString` not correct ([#716](https://github.com/AgoraIO-Extensions/react-native-agora/issues/716)) ([a358f0c](https://github.com/AgoraIO-Extensions/react-native-agora/commit/a358f0cd210f9c3faa0b8dbb85707ff08333f527))
|
|
159
|
+
* example crash NMS-16331 ([#714](https://github.com/AgoraIO-Extensions/react-native-agora/issues/714)) ([f819293](https://github.com/AgoraIO-Extensions/react-native-agora/commit/f819293b9e123448e541cf40ded3edb19b805833)), closes [#716](https://github.com/AgoraIO-Extensions/react-native-agora/issues/716)
|
|
160
|
+
|
|
161
|
+
## [4.2.3](https://github.com/AgoraIO-Extensions/react-native-agora/compare/v4.2.1...v4.2.3) (2023-10-17)
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
### Features
|
|
165
|
+
|
|
166
|
+
* support 4.2.3 ([#705](https://github.com/AgoraIO-Extensions/react-native-agora/issues/705)) ([416bcfa](https://github.com/AgoraIO-Extensions/react-native-agora/commit/416bcfad17bbf18d828d20e24036d082d7df99ff)), closes [#703](https://github.com/AgoraIO-Extensions/react-native-agora/issues/703) [#704](https://github.com/AgoraIO-Extensions/react-native-agora/issues/704) [#706](https://github.com/AgoraIO-Extensions/react-native-agora/issues/706) [#709](https://github.com/AgoraIO-Extensions/react-native-agora/issues/709) [#711](https://github.com/AgoraIO-Extensions/react-native-agora/issues/711) [#708](https://github.com/AgoraIO-Extensions/react-native-agora/issues/708)
|
|
167
|
+
* support native 4.2.2 ([#676](https://github.com/AgoraIO-Extensions/react-native-agora/issues/676)) ([6a3211c](https://github.com/AgoraIO-Extensions/react-native-agora/commit/6a3211c3142ee22bf9de5d027cb2ac85a34d0b59)), closes [#666](https://github.com/AgoraIO-Extensions/react-native-agora/issues/666) [#667](https://github.com/AgoraIO-Extensions/react-native-agora/issues/667) [#675](https://github.com/AgoraIO-Extensions/react-native-agora/issues/675) [#681](https://github.com/AgoraIO-Extensions/react-native-agora/issues/681) [#684](https://github.com/AgoraIO-Extensions/react-native-agora/issues/684)
|
|
168
|
+
|
|
169
|
+
## [4.2.1](https://github.com/AgoraIO-Extensions/react-native-agora/compare/v4.2.0...v4.2.1) (2023-06-30)
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
### Features
|
|
173
|
+
|
|
174
|
+
* support native 4.2.1 ([#670](https://github.com/AgoraIO-Extensions/react-native-agora/issues/670)) ([fa07094](https://github.com/AgoraIO-Extensions/react-native-agora/commit/fa070940e0466c15511c3cb5a0618236e2258c9b))
|
|
175
|
+
|
|
176
|
+
# [4.2.0](https://github.com/AgoraIO-Extensions/react-native-agora/compare/v4.2.0-rc.1...v4.2.0) (2023-05-26)
|
|
177
|
+
|
|
178
|
+
# [4.2.0-rc.1](https://github.com/AgoraIO-Extensions/react-native-agora/compare/v4.1.2...v4.2.0-rc.1) (2023-05-25)
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
### Features
|
|
182
|
+
|
|
183
|
+
* support 4.2.0 ([#647](https://github.com/AgoraIO-Extensions/react-native-agora/issues/647)) ([e959dac](https://github.com/AgoraIO-Extensions/react-native-agora/commit/e959dac51911f842efac4de6fd01897d06defbee)), closes [#624](https://github.com/AgoraIO-Extensions/react-native-agora/issues/624) [#626](https://github.com/AgoraIO-Extensions/react-native-agora/issues/626) [#628](https://github.com/AgoraIO-Extensions/react-native-agora/issues/628) [#629](https://github.com/AgoraIO-Extensions/react-native-agora/issues/629) [#630](https://github.com/AgoraIO-Extensions/react-native-agora/issues/630) [#635](https://github.com/AgoraIO-Extensions/react-native-agora/issues/635) [#638](https://github.com/AgoraIO-Extensions/react-native-agora/issues/638) [#642](https://github.com/AgoraIO-Extensions/react-native-agora/issues/642)
|
|
184
|
+
* support 4.2.0 ([#656](https://github.com/AgoraIO-Extensions/react-native-agora/issues/656)) ([d4fcbbe](https://github.com/AgoraIO-Extensions/react-native-agora/commit/d4fcbbe706ca016408d4958c5cac659cbc199308)), closes [#624](https://github.com/AgoraIO-Extensions/react-native-agora/issues/624) [#626](https://github.com/AgoraIO-Extensions/react-native-agora/issues/626) [#628](https://github.com/AgoraIO-Extensions/react-native-agora/issues/628) [#629](https://github.com/AgoraIO-Extensions/react-native-agora/issues/629) [#630](https://github.com/AgoraIO-Extensions/react-native-agora/issues/630) [#635](https://github.com/AgoraIO-Extensions/react-native-agora/issues/635) [#638](https://github.com/AgoraIO-Extensions/react-native-agora/issues/638) [#642](https://github.com/AgoraIO-Extensions/react-native-agora/issues/642)
|
|
185
|
+
* support new arch ([#608](https://github.com/AgoraIO-Extensions/react-native-agora/issues/608)) ([25ff823](https://github.com/AgoraIO-Extensions/react-native-agora/commit/25ff8233d543f47bbb75ce9b134f3defa286fcbf))
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
### Reverts
|
|
189
|
+
|
|
190
|
+
* Revert "feat: support 4.2.0 (#647)" (#655) ([256ce52](https://github.com/AgoraIO-Extensions/react-native-agora/commit/256ce523a951341138e0a718f36fe0a7fcc0b1d3)), closes [#647](https://github.com/AgoraIO-Extensions/react-native-agora/issues/647) [#655](https://github.com/AgoraIO-Extensions/react-native-agora/issues/655)
|
|
191
|
+
|
|
192
|
+
## [4.1.2](https://github.com/AgoraIO-Extensions/react-native-agora/compare/v4.1.0...v4.1.2) (2023-03-14)
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
### Bug Fixes
|
|
196
|
+
|
|
197
|
+
* add `requiresMainQueueSetup` for iOS [#583](https://github.com/AgoraIO-Extensions/react-native-agora/issues/583) ([#603](https://github.com/AgoraIO-Extensions/react-native-agora/issues/603)) ([64f2911](https://github.com/AgoraIO-Extensions/react-native-agora/commit/64f29110fe5453ad35a97b5041be65227c46026c))
|
|
198
|
+
* crash after release [#579](https://github.com/AgoraIO-Extensions/react-native-agora/issues/579) ([282d4de](https://github.com/AgoraIO-Extensions/react-native-agora/commit/282d4dede4d56329f593bbb65592def1e2e78baf))
|
|
199
|
+
|
|
200
|
+
# [4.1.0](https://github.com/AgoraIO-Extensions/react-native-agora/compare/v4.0.0...v4.1.0) (2022-12-20)
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
### Bug Fixes
|
|
204
|
+
|
|
205
|
+
* add `setDualStreamMode` method ([40faff6](https://github.com/AgoraIO-Extensions/react-native-agora/commit/40faff60a3844f11407682295da50f2996e333ed))
|
|
206
|
+
* the event which named contains `Ex` not triggered issue (such as `onTokenPrivilegeWillExpire`) ([ad372a6](https://github.com/AgoraIO-Extensions/react-native-agora/commit/ad372a690e5ce8fd989d2e8977a58715f27b745d))
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
### Features
|
|
210
|
+
|
|
211
|
+
* support 4.1.0 ([a8c6d64](https://github.com/AgoraIO-Extensions/react-native-agora/commit/a8c6d641c4740d64844d338caea671ce267fc89f)), closes [#538](https://github.com/AgoraIO-Extensions/react-native-agora/issues/538) [#539](https://github.com/AgoraIO-Extensions/react-native-agora/issues/539) [#554](https://github.com/AgoraIO-Extensions/react-native-agora/issues/554) [#559](https://github.com/AgoraIO-Extensions/react-native-agora/issues/559)
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
# [4.1.0-rc.1](https://github.com/AgoraIO-Extensions/react-native-agora/compare/v4.0.0...v4.1.0-rc.1) (2022-11-29)
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
### Bug Fixes
|
|
219
|
+
|
|
220
|
+
* `onEvent` conflict [#554](https://github.com/AgoraIO-Extensions/react-native-agora/issues/554) ([8686c55](https://github.com/AgoraIO-Extensions/react-native-agora/commit/8686c55f52271ff8cc87f0a55ce5e977d80aefde))
|
|
221
|
+
* add `setDualStreamMode` method ([40faff6](https://github.com/AgoraIO-Extensions/react-native-agora/commit/40faff60a3844f11407682295da50f2996e333ed))
|
|
222
|
+
* release throw exception & use `NativeEventEmitter` instead of `DeviceEventEmitter` [#538](https://github.com/AgoraIO-Extensions/react-native-agora/issues/538) [#539](https://github.com/AgoraIO-Extensions/react-native-agora/issues/539) ([52f1471](https://github.com/AgoraIO-Extensions/react-native-agora/commit/52f1471209edba939480a44cf7eefa699ee66710))
|
|
223
|
+
* the event which named contains `Ex` not triggered issue (such as `onTokenPrivilegeWillExpire`) ([ad372a6](https://github.com/AgoraIO-Extensions/react-native-agora/commit/ad372a690e5ce8fd989d2e8977a58715f27b745d))
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
### Features
|
|
227
|
+
|
|
228
|
+
* add `getPlaybackDefaultDevice` and `getRecordingDefaultDevice` ([22ea54e](https://github.com/AgoraIO-Extensions/react-native-agora/commit/22ea54e33d905b2a40a2a4f10428b1f3ae617fbf))
|
|
229
|
+
* support 4.1.0 iris ([aac5174](https://github.com/AgoraIO-Extensions/react-native-agora/commit/aac51740c7f243f9652e177d367bce3b7dc18116))
|
|
230
|
+
* support 4.1.0 native ([7498ff9](https://github.com/AgoraIO-Extensions/react-native-agora/commit/7498ff949ba494a044def44cec3a6b9d3f4b7775))
|
|
231
|
+
|
|
232
|
+
# [4.0.0](https://github.com/AgoraIO-Community/react-native-agora/compare/v4.0.0-rc.1...v4.0.0) (2022-09-28)
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
### Bug Fixes
|
|
236
|
+
|
|
237
|
+
* some AudioFrameObserver & VideoFrameObserver issue ([c6acbeb](https://github.com/AgoraIO-Community/react-native-agora/commit/c6acbebe8cac1ee3a5379b5a1fe68c1fe7272f82))
|
|
238
|
+
|
|
239
|
+
# 4.0.0-rc.1 (2022-09-13)
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
### Features
|
|
243
|
+
|
|
244
|
+
* support native 4.0.0-rc.1 ([7e074d2](https://github.com/AgoraIO-Community/react-native-agora/commit/7e074d2a44f670c6128c453250394725bb4a467a))
|
|
245
|
+
|
|
246
|
+
# 4.0.0-beta.1 (2022-07-08)
|
|
247
|
+
|
|
248
|
+
## [3.7.1](https://github.com/AgoraIO-Community/react-native-agora/compare/v3.7.0...v3.7.1) (2022-07-15)
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
### Bug Fixes
|
|
252
|
+
|
|
253
|
+
* some build issue ([1e9cc49](https://github.com/AgoraIO-Community/react-native-agora/commit/1e9cc49f2b7b95019d9d7023ddbad4255ad6ebda))
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
### Features
|
|
257
|
+
|
|
258
|
+
* add plugin example ([18beb9a](https://github.com/AgoraIO-Community/react-native-agora/commit/18beb9aa0c44dcbaafdc4bd1a095fd6371153012))
|
|
259
|
+
|
|
260
|
+
# [3.7.0](https://github.com/AgoraIO-Community/react-native-agora/compare/v3.6.2...v3.7.0) (2022-05-13)
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
### Features
|
|
264
|
+
|
|
265
|
+
* support 3.7.0 ([#490](https://github.com/AgoraIO-Community/react-native-agora/issues/490)) ([0d9e681](https://github.com/AgoraIO-Community/react-native-agora/commit/0d9e6819a1a460b23620ec486356dd6dce2ea30f)), closes [#494](https://github.com/AgoraIO-Community/react-native-agora/issues/494)
|
|
266
|
+
|
|
267
|
+
## [3.6.2](https://github.com/AgoraIO-Community/react-native-agora/compare/v3.5.3...v3.6.2) (2022-04-13)
|
|
268
|
+
|
|
269
|
+
|
|
270
|
+
### Bug Fixes
|
|
271
|
+
|
|
272
|
+
* improve Xcode 12 support ([#452](https://github.com/AgoraIO-Community/react-native-agora/issues/452)) ([d2b9880](https://github.com/AgoraIO-Community/react-native-agora/commit/d2b9880dedbdc7d2610976f11581b66d23fd43e9))
|
|
273
|
+
* iOS virtualbackground color ([#472](https://github.com/AgoraIO-Community/react-native-agora/issues/472)) ([5fcf108](https://github.com/AgoraIO-Community/react-native-agora/commit/5fcf108d671bb0c0329a2b55aa826f7e9cb17836))
|
|
274
|
+
* remove green background color ([14a127e](https://github.com/AgoraIO-Community/react-native-agora/commit/14a127e59d73aff76912845ca2c525da834286f1))
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
### Features
|
|
278
|
+
|
|
279
|
+
* support 3.6.2 ([1133c71](https://github.com/AgoraIO-Community/react-native-agora/commit/1133c71d211e059c500b0cc8b4813c8c112edcf3))
|
|
280
|
+
* support 3.6.2.70 ([00b9775](https://github.com/AgoraIO-Community/react-native-agora/commit/00b97751e726544e48d55c0a71c13ab9a341d8fd))
|
|
281
|
+
|
|
282
|
+
## [3.5.3](https://github.com/AgoraIO-Community/react-native-agora/compare/v3.5.2...v3.5.3) (2022-02-08)
|
|
283
|
+
|
|
284
|
+
## [3.5.2](https://github.com/AgoraIO-Community/react-native-agora/compare/v3.5.2-rc.1...v3.5.2) (2022-01-11)
|
|
285
|
+
|
|
286
|
+
## [3.5.2-rc.1](https://github.com/AgoraIO-Community/react-native-agora/compare/v3.5.2-rc.0...v3.5.2-rc.1) (2021-12-24)
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
### Bug Fixes
|
|
290
|
+
|
|
291
|
+
* add `blur_degree` to VirtualBackgroundSource ([f7d7b35](https://github.com/AgoraIO-Community/react-native-agora/commit/f7d7b35b493c3c355a7d80fd8c12c2f456d946c5))
|
|
292
|
+
* enable to enabled ([3525f2c](https://github.com/AgoraIO-Community/react-native-agora/commit/3525f2c8ff5fb6574e21b94588f8a951e109c639))
|
|
293
|
+
* some defined issues ([30a9f36](https://github.com/AgoraIO-Community/react-native-agora/commit/30a9f36702f9335142607fb06fe5e8fc7e2df3bf))
|
|
294
|
+
|
|
295
|
+
## [3.5.2-rc.0](https://github.com/AgoraIO-Community/react-native-agora/compare/v3.5.1...v3.5.2-rc.0) (2021-12-14)
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
### Bug Fixes
|
|
299
|
+
|
|
300
|
+
* iOS build failed ([#450](https://github.com/AgoraIO-Community/react-native-agora/issues/450)) ([a1168fb](https://github.com/AgoraIO-Community/react-native-agora/commit/a1168fb1e31f61e2f7892b0cc4ea89e2f30e6bbb))
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
### Features
|
|
304
|
+
|
|
305
|
+
* optimize examples ([da6b7a8](https://github.com/AgoraIO-Community/react-native-agora/commit/da6b7a87561450bb261d3832f25726e2da5732e3))
|
|
306
|
+
* support native 3.5.2 ([#448](https://github.com/AgoraIO-Community/react-native-agora/issues/448)) ([dddce67](https://github.com/AgoraIO-Community/react-native-agora/commit/dddce67ac34c3b922ae3487d443062896c8178f1)), closes [#4](https://github.com/AgoraIO-Community/react-native-agora/issues/4) [#3](https://github.com/AgoraIO-Community/react-native-agora/issues/3) [#2](https://github.com/AgoraIO-Community/react-native-agora/issues/2) [#6](https://github.com/AgoraIO-Community/react-native-agora/issues/6) [#5](https://github.com/AgoraIO-Community/react-native-agora/issues/5) [#4](https://github.com/AgoraIO-Community/react-native-agora/issues/4) [#3](https://github.com/AgoraIO-Community/react-native-agora/issues/3) [#2](https://github.com/AgoraIO-Community/react-native-agora/issues/2)
|
|
307
|
+
* update eventemitter for react native 0.65 ([#414](https://github.com/AgoraIO-Community/react-native-agora/issues/414)) ([1130839](https://github.com/AgoraIO-Community/react-native-agora/commit/1130839edd98e10c0baea7385e5960d51c3af172))
|
|
308
|
+
|
|
309
|
+
## [3.5.1](https://github.com/AgoraIO-Community/react-native-agora/compare/v3.5.0...v3.5.1) (2021-10-15)
|
|
310
|
+
|
|
311
|
+
|
|
312
|
+
### Bug Fixes
|
|
313
|
+
|
|
314
|
+
* warnings after RN 0.65 upgrade ([#409](https://github.com/AgoraIO-Community/react-native-agora/issues/409)) ([8e3401a](https://github.com/AgoraIO-Community/react-native-agora/commit/8e3401a0588a54970c47c20d3ac5e6cd64dde37c))
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
### Features
|
|
318
|
+
|
|
319
|
+
* support native 3.5.0.4 ([cfa6422](https://github.com/AgoraIO-Community/react-native-agora/commit/cfa64225307aa4e305cacde21dc060dcf6df43c1))
|
|
320
|
+
|
|
321
|
+
## [3.5.0](https://github.com/AgoraIO-Community/react-native-agora/compare/v3.5.0-rc.0...v3.5.0) (2021-09-16)
|
|
322
|
+
|
|
323
|
+
## [3.5.0-rc.0](https://github.com/AgoraIO-Community/react-native-agora/compare/v3.4.7...v3.5.0-rc.0) (2021-09-08)
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
### Features
|
|
327
|
+
|
|
328
|
+
* support native 3.5.0.2 ([f1f7668](https://github.com/AgoraIO-Community/react-native-agora/commit/f1f76684bb8b8dff6ca00b7e26374677c4151d21))
|
|
329
|
+
* support native 3.5.0.3 ([6c0c8f0](https://github.com/AgoraIO-Community/react-native-agora/commit/6c0c8f01969178257fcf774259d91de5b8a2bc81))
|
|
330
|
+
|
|
331
|
+
## [3.4.7](https://github.com/AgoraIO-Community/react-native-agora/compare/v3.4.6...v3.4.7) (2021-09-03)
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
### Features
|
|
335
|
+
|
|
336
|
+
* support 3.2.+ ([c4c1c49](https://github.com/AgoraIO-Community/react-native-agora/commit/c4c1c4927186b09ecea207db118c69289f429a14))
|
|
337
|
+
* support 3.3.+ ([ac57d2a](https://github.com/AgoraIO-Community/react-native-agora/commit/ac57d2a39e6b413b5a8d144710884459d050c82c))
|
|
338
|
+
* support 3.4.+ ([b66bc46](https://github.com/AgoraIO-Community/react-native-agora/commit/b66bc4645b6b7ea6bbaf74b7b69cfa89f05e7403))
|
|
339
|
+
|
|
340
|
+
## [3.4.6](https://github.com/AgoraIO-Community/react-native-agora/compare/v3.4.5...v3.4.6) (2021-07-23)
|
|
341
|
+
|
|
342
|
+
|
|
343
|
+
### Features
|
|
344
|
+
|
|
345
|
+
* support 3.4.6 ([aa309e5](https://github.com/AgoraIO-Community/react-native-agora/commit/aa309e5ec805f8fc843d6ae085141861b0963c8a))
|
|
346
|
+
|
|
347
|
+
## [3.4.5](https://github.com/AgoraIO-Community/react-native-agora/compare/v3.4.5-rc.0...v3.4.5) (2021-07-15)
|
|
348
|
+
|
|
349
|
+
## [3.4.5-rc.0](https://github.com/AgoraIO-Community/react-native-agora/compare/v3.4.2...v3.4.5-rc.0) (2021-06-28)
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
### Features
|
|
353
|
+
|
|
354
|
+
* add RtcEngineContext instead of RtcEngineConfig ([d646652](https://github.com/AgoraIO-Community/react-native-agora/commit/d646652723e8669646f0764be45b989d4706a701))
|
|
355
|
+
* optimize constructor for Classes.ts ([d14a41a](https://github.com/AgoraIO-Community/react-native-agora/commit/d14a41a761a6aab96d622496d7ec3b1492af8ae3))
|
|
356
|
+
* support 3.4.5 ([6180a1e](https://github.com/AgoraIO-Community/react-native-agora/commit/6180a1e81ed2dc7c61552f52d36e2bb87076a234))
|
|
357
|
+
|
|
358
|
+
## [3.4.2](https://github.com/AgoraIO-Community/react-native-agora/compare/v3.3.3...v3.4.2) (2021-05-25)
|
|
359
|
+
|
|
360
|
+
|
|
361
|
+
### Bug Fixes
|
|
362
|
+
|
|
363
|
+
* **uid compatible:** int to uint ([cdc9eae](https://github.com/AgoraIO-Community/react-native-agora/commit/cdc9eaebc11d49afa4d035ecafc00880d2a2c68c))
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
### Features
|
|
367
|
+
|
|
368
|
+
* **upgrade native sdk:** 3.4.1 ([2bac9da](https://github.com/AgoraIO-Community/react-native-agora/commit/2bac9da051370d4327f7868a2634c0043eeeb3d5))
|
|
369
|
+
|
|
370
|
+
## [3.3.3](https://github.com/AgoraIO-Community/react-native-agora/compare/v3.3.2...v3.3.3) (2021-04-13)
|
|
371
|
+
|
|
372
|
+
|
|
373
|
+
### Features
|
|
374
|
+
|
|
375
|
+
* upgrade native SDK to 3.3.2 ([a54feda](https://github.com/AgoraIO-Community/react-native-agora/commit/a54fedab614a80f90450cc789352049f8f1d671f))
|
|
376
|
+
* **add example:** channelAudio,liveStream,mediaChannelRelay,streamData ([e4d5ceb](https://github.com/AgoraIO-Community/react-native-agora/commit/e4d5ceb0f42e8ee1a987fc621459eb8b84d25b5c))
|
|
377
|
+
* **add voicechange:** add VoiceChange ([c1722cc](https://github.com/AgoraIO-Community/react-native-agora/commit/c1722ccdf1fbfee4b5b6c84ae34e3990b60b18e6))
|
|
378
|
+
|
|
379
|
+
## [3.3.2](https://github.com/AgoraIO-Community/react-native-agora/compare/v3.3.2-rc.0...v3.3.2) (2021-03-22)
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
### Bug Fixes
|
|
383
|
+
|
|
384
|
+
* iOS selector error ([2d1ac8f](https://github.com/AgoraIO-Community/react-native-agora/commit/2d1ac8f1b902f71c06b0b1729579adf396b58c9b))
|
|
385
|
+
|
|
386
|
+
## [3.3.2-rc.0](https://github.com/AgoraIO-Community/react-native-agora/compare/v3.3.1...v3.3.2-rc.0) (2021-03-19)
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
### Bug Fixes
|
|
390
|
+
|
|
391
|
+
* support react-native 0.64.0 close [#334](https://github.com/AgoraIO-Community/react-native-agora/issues/334) ([0140754](https://github.com/AgoraIO-Community/react-native-agora/commit/014075441ec3479e7abe84768c3e00b1da2d97fc))
|
|
392
|
+
|
|
393
|
+
## [3.3.1](https://github.com/AgoraIO-Community/react-native-agora/compare/v3.3.1-rc.0...v3.3.1) (2021-03-12)
|
|
394
|
+
|
|
395
|
+
## [3.3.1-rc.0](https://github.com/AgoraIO-Community/react-native-agora/compare/v3.3.0-rc.1...v3.3.1-rc.0) (2021-03-09)
|
|
396
|
+
|
|
397
|
+
|
|
398
|
+
### Bug Fixes
|
|
399
|
+
|
|
400
|
+
* annotation build warning ([551ebfe](https://github.com/AgoraIO-Community/react-native-agora/commit/551ebfe3c8dec34cfdf7e006d38523c60123bc58))
|
|
401
|
+
* type cast error ([f5af6dc](https://github.com/AgoraIO-Community/react-native-agora/commit/f5af6dc9cec642dd3ae5d1507913141e95dbb71f))
|
|
402
|
+
* type cast error ([98c4331](https://github.com/AgoraIO-Community/react-native-agora/commit/98c4331bd97ab1e2dc7216470fc2978c5d4dcd74))
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
### Features
|
|
406
|
+
|
|
407
|
+
* add example for `playEffect` ([7987121](https://github.com/AgoraIO-Community/react-native-agora/commit/7987121ff2822c053f327ccdeb60ff17202f6c53))
|
|
408
|
+
* support 3.3.1 for Android ([cd7a2cd](https://github.com/AgoraIO-Community/react-native-agora/commit/cd7a2cdaff747cad9d2e386d79589c7299036ff6))
|
|
409
|
+
* support 3.3.1 for iOS ([836f3b4](https://github.com/AgoraIO-Community/react-native-agora/commit/836f3b4c87f0c0a478c135a4a6ed0ed4279a446e))
|
|
410
|
+
* support 3.3.1 for TS ([b7a1d00](https://github.com/AgoraIO-Community/react-native-agora/commit/b7a1d006bbbd6a635b8cee18c4a50c4a1ab5bbdd))
|
|
411
|
+
|
|
412
|
+
## [3.3.0-rc.1](https://github.com/AgoraIO-Community/react-native-agora/compare/v3.3.0-rc.0...v3.3.0-rc.1) (2021-01-28)
|
|
413
|
+
|
|
414
|
+
|
|
415
|
+
### Bug Fixes
|
|
416
|
+
|
|
417
|
+
* type error ([1ffd0f8](https://github.com/AgoraIO-Community/react-native-agora/commit/1ffd0f8923b2968d1d908d4c672ab8c40072635e))
|
|
418
|
+
|
|
419
|
+
## [3.3.0-rc.0](https://github.com/AgoraIO-Community/react-native-agora/compare/v3.2.2...v3.3.0-rc.0) (2021-01-28)
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
### Features
|
|
423
|
+
|
|
424
|
+
* support 3.3.0 for Android ([9c48594](https://github.com/AgoraIO-Community/react-native-agora/commit/9c485942661c0e60c8413f9088b4ed0fa37ae2da))
|
|
425
|
+
* support 3.3.0 for iOS ([b422ce8](https://github.com/AgoraIO-Community/react-native-agora/commit/b422ce8e8660067075317e4f0f16a29f5a49b6b7))
|
|
426
|
+
* support 3.3.0 for TS ([fc9dd70](https://github.com/AgoraIO-Community/react-native-agora/commit/fc9dd70fd32402f5eed281b4007ffd3aacaf51e0))
|
|
427
|
+
|
|
428
|
+
## [3.2.2](https://github.com/AgoraIO-Community/react-native-agora/compare/v3.2.1...v3.2.2) (2020-12-28)
|
|
429
|
+
|
|
430
|
+
|
|
431
|
+
### Bug Fixes
|
|
432
|
+
|
|
433
|
+
* process resolve value type ([d28c79d](https://github.com/AgoraIO-Community/react-native-agora/commit/d28c79d18338604cbc6e723baedd9618e8a11374))
|
|
434
|
+
|
|
435
|
+
## [3.2.1](https://github.com/AgoraIO-Community/react-native-agora/compare/v3.2.0...v3.2.1) (2020-12-24)
|
|
436
|
+
|
|
437
|
+
## [3.2.0](https://github.com/AgoraIO-Community/react-native-agora/compare/v3.2.0-rc.0...v3.2.0) (2020-12-23)
|
|
438
|
+
|
|
439
|
+
|
|
440
|
+
### Features
|
|
441
|
+
|
|
442
|
+
* upgrade native SDK to 3.2.1 ([3dcc489](https://github.com/AgoraIO-Community/react-native-agora/commit/3dcc489bb52daaf8a794554f6048f343cbff5d8f))
|
|
443
|
+
|
|
444
|
+
## [3.2.0-rc.0](https://github.com/AgoraIO-Community/react-native-agora/compare/v3.1.6...v3.2.0-rc.0) (2020-12-21)
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
### Features
|
|
448
|
+
|
|
449
|
+
* add `setClientRole(role: ClientRole, options?: ClientRoleOptions): Promise<void>` ([721604e](https://github.com/AgoraIO-Community/react-native-agora/commit/721604ee94c3f7e3a0485b5b5db7fb5973e30665))
|
|
450
|
+
* add `setClientRole(role: ClientRole, options?: ClientRoleOptions): Promise<void>` ([2fef3ae](https://github.com/AgoraIO-Community/react-native-agora/commit/2fef3aee038b31808af53cee80a0fddc8d444fe8))
|
|
451
|
+
* add `setClientRole(role: ClientRole, options?: ClientRoleOptions): Promise<void>` ([3a55997](https://github.com/AgoraIO-Community/react-native-agora/commit/3a55997db81dcd16e68ee551d69b9079ff8052b0))
|
|
452
|
+
* upgrade to 3.2.0 ([fcb57cc](https://github.com/AgoraIO-Community/react-native-agora/commit/fcb57cc3e2cbb3e16750e9ce8ddca069184ac1c0))
|
|
453
|
+
* upgrade to 3.2.0 ([4ee51a9](https://github.com/AgoraIO-Community/react-native-agora/commit/4ee51a9b405deb17b467f5359f6717033c3961a2))
|
|
454
|
+
* upgrade to 3.2.0 ([680048f](https://github.com/AgoraIO-Community/react-native-agora/commit/680048f7836940f586ce7228559ba2cde9e0de62))
|
|
455
|
+
|
|
456
|
+
## [3.1.7](https://github.com/AgoraIO-Community/react-native-agora/compare/v3.1.6...v3.1.7) (2020-12-28)
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
### Bug Fixes
|
|
460
|
+
|
|
461
|
+
* process resolve value type ([d28c79d](https://github.com/AgoraIO-Community/react-native-agora/commit/d28c79d18338604cbc6e723baedd9618e8a11374))
|
|
462
|
+
|
|
463
|
+
## [3.1.6](https://github.com/AgoraIO-Community/react-native-agora/compare/v3.1.5...v3.1.6) (2020-12-21)
|
|
464
|
+
|
|
465
|
+
|
|
466
|
+
### Bug Fixes
|
|
467
|
+
|
|
468
|
+
* `MetadataReceived` event parameters bug ([bda6ec0](https://github.com/AgoraIO-Community/react-native-agora/commit/bda6ec081ab95fd3295de89d4bdfe0bcb4b2a0a2))
|
|
469
|
+
* some rendering problems when change render widget order ([12e2561](https://github.com/AgoraIO-Community/react-native-agora/commit/12e25618ce8fabd5bf9b34e418792450518e219e))
|
|
470
|
+
* some rendering problems when change render widget order ([c737102](https://github.com/AgoraIO-Community/react-native-agora/commit/c737102ecc22e3cb563f9762a88d9b519fdc599f))
|
|
471
|
+
* use the better way to fix rendering problems ([f0c044f](https://github.com/AgoraIO-Community/react-native-agora/commit/f0c044f7248f5c301c7dec087aa33a9941f10fca))
|
|
472
|
+
|
|
473
|
+
|
|
474
|
+
### Features
|
|
475
|
+
|
|
476
|
+
* example support render multi remote-videos ([af68969](https://github.com/AgoraIO-Community/react-native-agora/commit/af68969cf18b355cae22fe5999ae9b00c912c879))
|
|
477
|
+
|
|
478
|
+
## [3.1.5](https://github.com/AgoraIO-Community/react-native-agora/compare/v3.1.4...v3.1.5) (2020-12-15)
|
|
479
|
+
|
|
480
|
+
|
|
481
|
+
### Bug Fixes
|
|
482
|
+
|
|
483
|
+
* `RtcSurfaceView` memory leak ([c8845fe](https://github.com/AgoraIO-Community/react-native-agora/commit/c8845fe04c1596fe2e7242302bf160bc671910cb))
|
|
484
|
+
|
|
485
|
+
|
|
486
|
+
### Features
|
|
487
|
+
|
|
488
|
+
* example support `switchRender` ([a6a509e](https://github.com/AgoraIO-Community/react-native-agora/commit/a6a509e273f64c67dce67fc61a9451d5b0ffeb70)), closes [#309](https://github.com/AgoraIO-Community/react-native-agora/issues/309)
|
|
489
|
+
|
|
490
|
+
## [3.1.4](https://github.com/AgoraIO-Community/react-native-agora/compare/v3.1.4-rc.1...v3.1.4) (2020-12-02)
|
|
491
|
+
|
|
492
|
+
|
|
493
|
+
### Bug Fixes
|
|
494
|
+
|
|
495
|
+
* `JoinChannelSuccess` `RejoinChannelSuccess` type in `RtcChannelEvents` ([25cf253](https://github.com/AgoraIO-Community/react-native-agora/commit/25cf2536df117bdd0b3fcb4d4e91f099f9649487))
|
|
496
|
+
* miss `uid` in `StreamSubscribeStateCallback` ([9bc680f](https://github.com/AgoraIO-Community/react-native-agora/commit/9bc680f1ee7a6b7e3926a7e29847013950841d84))
|
|
497
|
+
* RtcChannel `destroyAll` ([d647049](https://github.com/AgoraIO-Community/react-native-agora/commit/d6470492b25116054fd7969ad8d408ce34fce6c2))
|
|
498
|
+
|
|
499
|
+
## [3.1.4-rc.1](https://github.com/AgoraIO-Community/react-native-agora/compare/v3.1.4-rc.0...v3.1.4-rc.1) (2020-10-22)
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
### Bug Fixes
|
|
503
|
+
|
|
504
|
+
* Android setData error ([69a7a96](https://github.com/AgoraIO-Community/react-native-agora/commit/69a7a96ec35037f5dbcc5a0e67285eb1d4c59c08))
|
|
505
|
+
|
|
506
|
+
|
|
507
|
+
### Features
|
|
508
|
+
|
|
509
|
+
* add API example ([652c346](https://github.com/AgoraIO-Community/react-native-agora/commit/652c346821f63546aaaa1cf7b677781b87dd87b2))
|
|
510
|
+
* Android add getNativeHandle ([0eab471](https://github.com/AgoraIO-Community/react-native-agora/commit/0eab47114cde933482f90879e177fd019430cafd))
|
|
511
|
+
* js add getNativeHandle ([201c82a](https://github.com/AgoraIO-Community/react-native-agora/commit/201c82a66fe86eee86d24b2188b9bfd5ecaca04f))
|
|
512
|
+
|
|
513
|
+
## [3.1.4-rc.0](https://github.com/AgoraIO-Community/react-native-agora/compare/3.1.3...v3.1.4-rc.0) (2020-10-21)
|
|
514
|
+
|
|
515
|
+
|
|
516
|
+
### Features
|
|
517
|
+
|
|
518
|
+
* migrating to @react-native-community/bob ([c72a527](https://github.com/AgoraIO-Community/react-native-agora/commit/c72a5278b2e990081d34e2e765e2e6a26ba792bb))
|
|
519
|
+
|
|
520
|
+
## 3.1.3
|
|
521
|
+
- fix iOS `deinit` `[weak self]` crash
|
|
522
|
+
- make `RtcChannel.channelId` public
|
|
523
|
+
- add `setAudioSessionOperationRestriction` and `sendCustomReportMessage` method
|
|
524
|
+
|
|
525
|
+
## 3.1.2-rc.2
|
|
526
|
+
- fix iOS `deinit` `[weak self]` crash
|
|
527
|
+
- fix `engine()` build error
|
|
528
|
+
|
|
529
|
+
## 3.1.2-rc.1
|
|
530
|
+
- make `RtcChannel.channelId` public
|
|
531
|
+
|
|
532
|
+
## 3.1.2
|
|
533
|
+
- support 3.1.2 native sdk
|
|
534
|
+
- fix `RejoinChannelSuccess` bug
|
|
535
|
+
|
|
536
|
+
## 3.0.1
|
|
537
|
+
- release version
|
|
538
|
+
|
|
539
|
+
## 3.0.1-rc.5
|
|
540
|
+
- fix `Xcode10` `Swift4` compile error
|
|
541
|
+
|
|
542
|
+
## 3.0.1-rc.4
|
|
543
|
+
- fix crash when rendering view without `channelId` property
|
|
544
|
+
- fix `RtcLocalView` freezes after rendering remote view
|
|
545
|
+
|
|
546
|
+
## 3.0.1-rc.3
|
|
547
|
+
- fix multiple channel render bug
|
|
548
|
+
- remove `Types` from export, you can import enum or class by `import {} from 'react-native-agora'`
|
|
549
|
+
- optimize ts code and doc
|
|
550
|
+
|
|
551
|
+
## 3.0.1-rc.2
|
|
552
|
+
- add `startPreview` `stopPreview`
|
|
553
|
+
|
|
554
|
+
## 3.0.1-rc.1
|
|
555
|
+
- prerelease 3.0.1-rc.1
|
|
556
|
+
|
|
557
|
+
## 3.0.1-beta.9
|
|
558
|
+
- add `constructor` for typescript
|
|
559
|
+
- fix Android `mapToChannelMediaInfo` crash
|
|
560
|
+
- fix iOS `switchChannel` `sendMetadata` crash
|
|
561
|
+
|
|
562
|
+
## 3.0.1-beta.8
|
|
563
|
+
- fix iOS event warn
|
|
564
|
+
- fix ts array declare error
|
|
565
|
+
|
|
566
|
+
## 3.0.1-beta.7
|
|
567
|
+
- fix lib ignore bug
|
|
568
|
+
|
|
569
|
+
## 3.0.1-beta.6
|
|
570
|
+
- support 3.0.1.1 native sdk
|
|
571
|
+
- fix iOS `RtcChannelEvent` `NetworkQuality` crash
|
|
572
|
+
|
|
573
|
+
## 3.0.1-beta.5
|
|
574
|
+
- fix lib ignore bug
|
|
575
|
+
|
|
576
|
+
## 3.0.1-beta.4
|
|
577
|
+
- fix android `setCameraCapturerConfiguration` bug
|
|
578
|
+
|
|
579
|
+
## 3.0.1-beta.3
|
|
580
|
+
- fix iOS `mirrorMode` bug
|
|
581
|
+
|
|
582
|
+
## 3.0.1-beta.2
|
|
583
|
+
- fix `createWithAreaCode` bug
|
|
584
|
+
- fix render black screen bug
|
|
585
|
+
|
|
586
|
+
## 3.0.1-beta.1
|
|
587
|
+
- support 3.0.1 native sdk
|
|
588
|
+
|
|
589
|
+
## 3.0.0-beta.6
|
|
590
|
+
- fix iOS link bug
|
|
591
|
+
|
|
592
|
+
## 3.0.0-beta.5
|
|
593
|
+
- optimize doc
|
|
594
|
+
|
|
595
|
+
## 3.0.0-beta.4
|
|
596
|
+
- optimize code
|
|
597
|
+
|
|
598
|
+
## 3.0.0-beta.3
|
|
599
|
+
- optimize doc
|
|
600
|
+
|
|
601
|
+
## 3.0.0-beta.2
|
|
602
|
+
- optimize
|
|
603
|
+
|
|
604
|
+
## 3.0.0-beta.1
|
|
605
|
+
- support 3.0.0 native sdk
|
|
606
|
+
|
|
607
|
+
## 2.9.1-alpha.7
|
|
608
|
+
- fix `setBeautyEffectOptions` bugs
|
|
609
|
+
|
|
610
|
+
## 2.9.1-alpha.6
|
|
611
|
+
- fix bugs
|
|
612
|
+
|
|
613
|
+
## 2.9.1-alpha.5
|
|
614
|
+
- upgrade android sdk to 2.9.4
|
|
615
|
+
|
|
616
|
+
## 2.9.1-alpha.4
|
|
617
|
+
- remove `AgoraRtcCryptoLoader` `libcrypto`
|
|
618
|
+
|
|
619
|
+
## 2.9.1-alpha.3
|
|
620
|
+
- upgrade android sdk to 2.9.4
|
|
621
|
+
|
|
622
|
+
## 2.9.1-alpha.2
|
|
623
|
+
- upgrade 2.9.2 fro android
|
|
624
|
+
|
|
625
|
+
## 2.9.1-alpha.1
|
|
626
|
+
- support 2.9.1 native sdk
|
|
627
|
+
|
|
628
|
+
## 2.9.0-alpha.3
|
|
629
|
+
- hotfix ios compile error
|
|
630
|
+
|
|
631
|
+
## 2.9.0-alpha.2
|
|
632
|
+
- fix ios dictionary stringValue type cast
|
|
633
|
+
|
|
634
|
+
## 2.9.0-alpha.1
|
|
635
|
+
- fix typo: rename `methodisSpeakerphoneEnabled` to `isSpeakerphoneEnabled`
|
|
636
|
+
- events deprecated & instead:
|
|
637
|
+
* `microphoneEnabled` instead `localAudioStateChanged`
|
|
638
|
+
* `audioTransportStatsOfUid` instead `remoteAudioStats`
|
|
639
|
+
* `videoTransportStatsOfUid` instead `remoteVideoStats`
|
|
640
|
+
* `userMuteVideo`, `userEnableVideo`, `userEnableLocalVideo` & `firstRemoteVideoDecoded` instead `remoteVideoStateChanged`
|
|
641
|
+
- events enhancement:
|
|
642
|
+
* `rtcStats`, `leaveChannel` add channel stats `txAudioBytes`, `txVideoBytes`, `rxAudioBytes`, `rxVideoBytes`, `txPacketLossRate`, `rxPacketLossRate`
|
|
643
|
+
- new events:
|
|
644
|
+
* `remoteAudioStateChanged` subscribe for remote audio state
|
|
645
|
+
* `localAudioStateChanged` subscribe for local audio state
|
|
646
|
+
* `localAudioStats` subscribe for local audio stats
|
|
647
|
+
* `mediaRelayStateChanged`, `receivedChannelMediaRelay`
|
|
648
|
+
- new apis:
|
|
649
|
+
* `switchChannel` switch to specified channel
|
|
650
|
+
* `startChannelMediaRelay`, `updateChannelMediaRelay`, `stopChannelMediaRelay`, `removeChannelMediaRelay` relay media streams operation for across channels.
|
|
651
|
+
|
|
652
|
+
## 2.8.0-alpha.1
|
|
653
|
+
- add `string uid` api support
|
|
654
|
+
- android: deprecate `lowLatency` member of LiveTranscoding
|
|
655
|
+
- add methods `getUserInfoByUserAccount`, `getUserInfoByUid`, `joinChannelWithUserAccount`, `registerLocalUserAccount`
|
|
656
|
+
- add events `localUserRegistered`, `userInfoUpdated`
|
|
657
|
+
- add `totalFrozenTime`, `frozenRate` to events `remoteVideoStats` & `remoteAudioStats`.
|
|
658
|
+
- add `numChannels` & `receivedSampleRate` & `receivedBitrate` to `remoteAudioStats`
|
|
659
|
+
- android: upgrade native sdk to 2.8.2
|
|
660
|
+
- ios: upgrade native sdk to 2.8.0
|
|
661
|
+
|
|
662
|
+
## 2.4.1-alpha.3
|
|
663
|
+
- refactor setLiveTranscoding: rename ios & android native parameters. export enum for javascript/typescript api.
|
|
664
|
+
- fix negative number case in android platform.
|
|
665
|
+
- improve api doc.
|
|
666
|
+
|
|
667
|
+
## 2.4.1-alpha.2
|
|
668
|
+
- deprecated `sendMessage` & `createDataStream` & `removeAllListeners` & `off`
|
|
669
|
+
- refactor event system
|
|
670
|
+
- fix `android` enum convert failed.
|
|
671
|
+
|
|
672
|
+
## 2.4.1-alpha
|
|
673
|
+
- support 2.4.1-alpha.1 agora video sdk android-2.4.1 / iOS-2.4.1
|
|
674
|
+
1. Deprecate iOS manual link operator, instead using cocoapods resolve compile dependencies.
|
|
675
|
+
2. Add methods getAudioMixingPlayoutVolume, getAudioMixingPublishVolume for audio mixing troubleshooting.
|
|
676
|
+
3. Add `txPacketLossRate`, `rxPacketLossRate` on `rtcStats` interface. usage: `RtcEngine.on('rtcStats', (data) => console.log(data))`.
|
|
677
|
+
4. Rename `receivedFrameRate` to `rendererOutputFrameRate` this property related on `localVideoStats` and `remoteVideoStats`.
|
|
678
|
+
5. Add event 'localVideoChanged' and Deprecate events `cameraReady` and `videoStopped`. You can listen `localVideoChanged` event instead `cameraReady` & `videoStopped`.
|
|
679
|
+
6. Add event `rtmpStreamingStateChanged` for rtmp streaming troubleshooting
|
|
680
|
+
7. Add event `audioCodecProfile` on `liveTranscoding` interface.
|
|
681
|
+
8. Add event `networkTypeChanged` for network troubleshooting.
|
|
682
|
+
9. Add method `registerMediaMetadataObserver` method, this method enables you to add synchronized metadata in the video stream for more diversified live broadcast interactions, such as sending shopping links, digital coupons, and online quizzes. note: Call this method before the joinChannel method. and applies to `channelProfile` with 1.
|
|
683
|
+
10. Add method `sendMediaData`, this method enables you send media data under the live broadcast mode (`channelProfile` = 1) note: call this method after the `registerMediaMetadataObserver` method.
|
|
684
|
+
11. Add event `audioMixingStateChanged` and Deprecate event 'localAudioMixingFinish`.
|
|
685
|
+
11. Add `firstRemoteAudioDecoded` event you can get more detail [here](https://docs.agora.io/en/Interactive%20Broadcast/release_android_video?platform=Android#v241)
|
|
686
|
+
|
|
687
|
+
## 2.4.0-alpha
|
|
688
|
+
- support 2.4.0-alpha.1 agora video sdk android-2.4.0 / iOS-2.4.0.1 and add sendMessage support in the same channel. Deprecate: startEchoTest and setVideoQualityParameters
|
|
689
|
+
- support 2.4.0-alpha.2 using 0.55.1 as peerDependency and support typescript
|
|
690
|
+
- support 2.4.0-alpha.3 bugfix iOS receiveStreamMessage data is null
|
|
691
|
+
- support 2.4.0-alpha.4 bugfix iOS videoSizeChanged field rotation typo
|
|
692
|
+
- support 2.4.0-alpha.5 bugfix Android & iOS side not support fit mode and hidden mode.
|
|
693
|
+
1. Deprecate & Remove: setupLocalVideo & setupRemoteVideo
|
|
694
|
+
2. rename iOS side constants
|
|
695
|
+
```
|
|
696
|
+
"AgoraVideoMirrorModeAuto" to "VideoMirrorModeAuto"
|
|
697
|
+
"AgoraVideoMirrorModeEnabled" to "VideoMirrorModeEnabled"
|
|
698
|
+
"AgoraVideoMirrorModeDisabled" to "VideoMirrorModeDisabled"
|
|
699
|
+
"AgoraChannelProfileCommunication" to "ChannelProfileCommunication"
|
|
700
|
+
"AgoraChannelProfileLiveBroadcasting" to "ChannelProfileLiveBroadcasting"
|
|
701
|
+
"AgoraChannelProfileGame" to "ChannelProfileGame"
|
|
702
|
+
"AgoraVideoMode" to "VideoMode"
|
|
703
|
+
"AgoraAudioMode" to "AudioMode"
|
|
704
|
+
```
|
|
705
|
+
|
|
706
|
+
## 2.3.3-alpha
|
|
707
|
+
- support agora video sdk 2.3.3
|
|
708
|
+
- release 2.3.3-alpha.3
|
|
709
|
+
- release 2.3.3-alpha.4 (remove deprecated native api)
|
|
710
|
+
- release 2.3.3-alpha.5 (refactor event react api & refactor native wrapper)
|
|
711
|
+
- release 2.3.3-alpha.6 (refactor with typescript & fix. iOS platform binding bug)
|
|
712
|
+
- release 2.3.3-alpha.7 (refactor RtcEngine#init method support audio / video mode and switch dualStream)
|
|
713
|
+
|
|
714
|
+
|
|
715
|
+
## 1.1.2
|
|
716
|
+
- add onVideoMute
|
|
717
|
+
- add onAudioMute
|
|
718
|
+
|
|
719
|
+
## 1.1.1
|
|
720
|
+
|
|
721
|
+
- add createDataStream
|
|
722
|
+
- add sendStreamMessage
|
|
723
|
+
- add onStreamMessage
|
|
724
|
+
|
|
725
|
+
## 1.0.9
|
|
726
|
+
|
|
727
|
+
- update to agora sdk version 2.0.2
|
|
728
|
+
|
|
729
|
+
- add setCameraAutoFocusFaceModeEnabled
|
|
730
|
+
|
|
731
|
+
- add setDefaultAudioRouteToSpeakerphone
|
|
732
|
+
|
|
733
|
+
- add setCameraTorchOn
|
|
734
|
+
|
|
735
|
+
- fix bug: Android speaker's volume indication
|
|
736
|
+
|
|
737
|
+
## 1.0.8
|
|
738
|
+
|
|
739
|
+
- update to agora sdk version 1.12
|
|
740
|
+
|
|
741
|
+
- init wouldn't start video preview. Should manually use startPreview.
|
|
742
|
+
|
|
743
|
+
- init options add new boolean parameter `swapWidthAndHeight` to support swap width and height.
|
|
744
|
+
|
|
745
|
+
- add configPublisher
|
|
746
|
+
|
|
747
|
+
- add setLocalRenderMode
|
|
748
|
+
|
|
749
|
+
- add setRemoteRenderMode
|
|
750
|
+
|
|
751
|
+
- add enableAudioVolumeIndication
|
|
752
|
+
|
|
753
|
+
- add onAudioVolumeIndication
|
|
754
|
+
|
|
755
|
+
- add zOrderMediaOverlay for android platform, support media overlay
|