Skip to main content
Required: App ID, Region from CometChat Dashboard
The Calls SDK handles the media layer for voice and video calls — camera, microphone, screen sharing, and the call UI. It’s a separate package from the Chat SDK and requires its own initialization.

Prerequisites

You need your App ID and Region from the CometChat Dashboard. If you haven’t created an app yet, sign up and create one. If you’re using the Chat SDK alongside (i.e., not Standalone Calling), make sure CometChat.init() completes before calling CometChatCalls.init().

Installation

Then import wherever needed:

Initialization

Call CometChatCalls.init() on app startup, after the Chat SDK has initialized (if you’re using it). The method takes a CallAppSettings object built with CallAppSettingsBuilder.
Replace APP_ID and REGION with your credentials from the Dashboard.
CometChatCalls.init() must be called before any other Calls SDK method. Calling generateToken(), startSession(), or registering listeners before init() will fail.

CallAppSettings Options

Initialization Order

If you’re using both the Chat SDK and Calls SDK, initialize them in sequence:
For Standalone Calling, you only need CometChatCalls.init() — no Chat SDK required.

Next Steps

Default Calling

Implement the complete ringing call flow

Call Session

Start and manage call sessions

Standalone Calling

Use Calls SDK without the Chat SDK

Calling Overview

Compare calling approaches and features