Agora-Flutter-SDK
                                
                                
                                
                                    Agora-Flutter-SDK copied to clipboard
                            
                            
                            
                        Flutter plugin of Agora RTC SDK for Android/iOS/macOS/Windows

Please could you update the voice quality and video quality
**Describe the bug** When I am in a video call , I start screen sharing so my camera feed gets replaced with my screen feed, but when I stop sharing...
Hi, i had a issue when i implement cloud recording using this api > https://api.agora.io/v1/apps/{{APPID}}/cloud_recording/resourceid/{{resourceId}}/mode/{{mode-type}}/start Steps to reproduce the behavior: 1. Hit this api to get resourceid (Status code 200)...
运行web端报错
../../../flutter/.pub-cache/hosted/http%2558%2547%2547mirrors.cnnic.cn%2547dart-pub%2547/iris_event-1.2.0/lib/iris_event.dart:1:8: Error: Not found: 'dart:ffi' import 'dart:ffi' as ffi; ^ : Error: Not found: 'dart:ffi' ../…/impl/api_caller.dart:3 import 'dart:ffi' as ffi; ^
**Describe the bug** The Exception : Unhandled Exception: type 'Null' is not a subtype of type 'Iterable' is throw when listening to facePositionChanged from RtcEngineEventHandler occurs multiple times. **Minimal reproduction...
Device overheats during video calls. Problem noted in both Android and iPhone devices. The video quality is already set to low :- Resolution: 320 × 180; frame rate: 15 fps;...
Release 6.0.0-rc.1 - Old import is not working anymore, should update example adapt to new version
**Describe the bug** The old import of V5xx is not working with release 6.0.0-rc.1 **To Reproduce** Steps to reproduce the behavior: 1. From Agora version 5.1.0 2. Upgrade to 6.0.0-rc.1...
**Is your feature request related to a problem? Please describe.** I need an Attach file (ex: .jpg, .pdf) for Agora Flutter SDK **Describe the solution you'd like** Create attach file...
由于性能原因,agora_rtc_engine暂时没有实现agora native(Android/iOS) sdk的所有功能,如自定义音频采集和渲染 ,[自定义视频采集和渲染](https://docs.agora.io/cn/Video/custom_video_android?platform=Android),[原始音频数据](https://docs.agora.io/cn/Video/raw_data_audio_android?platform=Android)等功能,agora_rtc_engine提供[RtcEnginePlugin](https://github.com/AgoraIO/Agora-Flutter-SDK/blob/master/android/src/main/java/io/agora/rtc/base/RtcEnginePlugin.kt)/[RtcEnginePlugin](https://github.com/AgoraIO/Agora-Flutter-SDK/blob/master/ios/Classes/Base/RtcEnginePlugin.h),允许你在Android/iOS代码中与Flutter端创建的[RtcEngine](https://github.com/AgoraIO/Agora-Flutter-SDK/blob/master/lib/src/rtc_engine.dart)交互,你可以继承[RtcEnginePlugin](https://github.com/AgoraIO/Agora-Flutter-SDK/blob/master/android/src/main/java/io/agora/rtc/base/RtcEnginePlugin.kt)/[RtcEnginePlugin](https://github.com/AgoraIO/Agora-Flutter-SDK/blob/master/ios/Classes/Base/RtcEnginePlugin.h)实现自己的插件,在onRtcEngineCreated回调中获取[RtcEngine](https://docs.agora.io/cn/Video/API%20Reference/java/classio_1_1agora_1_1rtc_1_1_rtc_engine.html)/[AgoraRtcEngineKit](https://docs.agora.io/cn/Video/API%20Reference/oc/Classes/AgoraRtcEngineKit.html),请注意不要在Android/iOS中调用[RtcEngine.destroy](https://docs.agora.io/cn/Video/API%20Reference/java/classio_1_1agora_1_1rtc_1_1_rtc_engine.html#afb808cdc9025a77af7dd2bce98311bfe)/[AgoraRtcEngineKit.destroy](https://docs.agora.io/cn/Video/API%20Reference/oc/Classes/AgoraRtcEngineKit.html#//api/name/destroy)方法,因为这会影响Flutter端的[RtcEngine](https://github.com/AgoraIO/Agora-Flutter-SDK/blob/master/lib/src/rtc_engine.dart)功能。如何使用RtcEnginePlugin