Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion chat-builder/android/integration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ dependencies {
implementation 'com.cometchat:chat-uikit-android:5.1.0'

// Optional: voice/video calling
implementation 'com.cometchat:calls-sdk-android:4.1.2'
implementation 'com.cometchat:calls-sdk-android:4.3.1'
}
```

Expand Down
2 changes: 1 addition & 1 deletion sdk/android/calling-overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Calling is a core feature of CometChat.

v2.4+ onwards, Voice & Video Calling functionality has been moved to a separate library. Please add the following dependency to your app-level `build.gradle` file in case you plan on using the Voice and Video Calling feature.

`dependencies { implementation 'com.cometchat:calls-sdk-android:4.1.0 }`
`dependencies { implementation 'com.cometchat:calls-sdk-android:4.3.1 }`

</Note>

Expand Down
2 changes: 1 addition & 1 deletion sdk/android/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ dependencies {

<Note>

v2.4+ onwards, Voice & Video Calling functionality has been moved to a separate library. In case you plan to use the calling feature, please add the Calling dependency `implementation 'com.cometchat:calls-sdk-android:4.1.0'` in the dependencies section of the app-level `build.gradle` file.
v2.4+ onwards, Voice & Video Calling functionality has been moved to a separate library. In case you plan to use the calling feature, please add the Calling dependency `implementation 'com.cometchat:calls-sdk-android:4.3.1'` in the dependencies section of the app-level `build.gradle` file.

</Note>

Expand Down
2 changes: 1 addition & 1 deletion sdk/android/setup-calling.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Then, add CometChatCalls to the app level `build.gradle` file in the `dependenci
<Tab title="Groovy">
```java
dependencies {
implementation 'com.cometchat:calls-sdk-android:4.1.0'
implementation 'com.cometchat:calls-sdk-android:4.3.1'
}
```

Expand Down
2 changes: 1 addition & 1 deletion sdk/android/setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ dependencies {

<Note>

In case you plan to use the calling feature, please add the Calling dependency `implementation 'com.cometchat:calls-sdk-android:4.1.0'` in the dependencies section of the app-level `build.gradle` file.
In case you plan to use the calling feature, please add the Calling dependency `implementation 'com.cometchat:calls-sdk-android:4.3.1'` in the dependencies section of the app-level `build.gradle` file.

</Note>

Expand Down
2 changes: 1 addition & 1 deletion ui-kit/android/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ dependencies {
implementation 'com.cometchat:chat-uikit-android:5.1.0'

// (Optional) Include this if your app uses voice/video calling features
implementation 'com.cometchat:calls-sdk-android:4.1.0'
implementation 'com.cometchat:calls-sdk-android:4.3.1'
}
```

Expand Down
Loading