Sourabh Patil
Sourabh Patil

Reputation: 29

I want to create Audio calling App in android studio with FCM is it possible

I am trying to build a simple chat application, but it requires Voice calls functionality to other users. I would be using Firebase for messaging. Does Firebase have Voice calls support?

Upvotes: 0

Views: 1982

Answers (3)

user10058084
user10058084

Reputation:

FCM is for push notifications. Previously there was GCM, but it is deprecated now. But it is not used for video calls, the only thing you can do is to send push notification to user, when someone calls him. To manage calls you need to use something like WebRTC. You should try ConnectyCube provider. They have Android SDK for chat/video calls and offer code samples, so that you can use them as basis for your project. It is WebRTC based and works pretty stable on my experience. Check the list of the main features for video calls on ConnectyCube page

Upvotes: 1

Vns Aditya
Vns Aditya

Reputation: 445

You can use WebRTC for Audio call and use FCM for signaling. But Firebase as a service does not provide any support for Audio/Video calls. You can also use third party SDKs like Twilio.

Upvotes: 2

Amit Kava
Amit Kava

Reputation: 694

no firebase does not support voice call support. It is support service like push notification using FCM.

Upvotes: 1

Related Questions