WaheedHussain
WaheedHussain

Reputation: 63

Can i implement one to one voice call(VOIP) in Flutter using agora_rtc?

Looking to make an app which supports one to one call (voice only) using agora_rtc_engine.Where user can call to specific user I would like to know how to in flutter we can be able add this feature and to show a incoming call screen or push notification as there is no example in the their official documentation. Thanks in advance.

Upvotes: 2

Views: 7631

Answers (1)

meherdeep thakur
meherdeep thakur

Reputation: 873

If you want to use the agora_rtc_engine that you shared then you can simply call disableVideo() function before joining the channel. You can clone this repo over here and replace enableVideo() with disableAudio() and you will have your 1 to 1 audio calling.

You can take a look at the get started guide here: https://docs.agora.io/en/Voice/start_call_audio_flutter?platform=Flutter

Agora does not provide any API to send push notification. You can use callKeep to push notification to a user with an incoming call screen.

Upvotes: 3

Related Questions