diff --git a/chat-builder/android/integration.mdx b/chat-builder/android/integration.mdx index 4fbacfb7..6cd0c348 100644 --- a/chat-builder/android/integration.mdx +++ b/chat-builder/android/integration.mdx @@ -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' } ``` diff --git a/sdk/android/calling-overview.mdx b/sdk/android/calling-overview.mdx index bd5fc916..da7cd7a5 100644 --- a/sdk/android/calling-overview.mdx +++ b/sdk/android/calling-overview.mdx @@ -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 }` diff --git a/sdk/android/overview.mdx b/sdk/android/overview.mdx index 93deed8a..96a65c3f 100644 --- a/sdk/android/overview.mdx +++ b/sdk/android/overview.mdx @@ -74,7 +74,7 @@ dependencies { -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. diff --git a/sdk/android/setup-calling.mdx b/sdk/android/setup-calling.mdx index 215dc55e..8a368ab1 100644 --- a/sdk/android/setup-calling.mdx +++ b/sdk/android/setup-calling.mdx @@ -48,7 +48,7 @@ Then, add CometChatCalls to the app level `build.gradle` file in the `dependenci ```java dependencies { - implementation 'com.cometchat:calls-sdk-android:4.1.0' + implementation 'com.cometchat:calls-sdk-android:4.3.1' } ``` diff --git a/sdk/android/setup.mdx b/sdk/android/setup.mdx index 85a28642..64ba06a7 100644 --- a/sdk/android/setup.mdx +++ b/sdk/android/setup.mdx @@ -63,7 +63,7 @@ dependencies { -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. diff --git a/ui-kit/android/getting-started.mdx b/ui-kit/android/getting-started.mdx index 340c0b61..1344b6cb 100644 --- a/ui-kit/android/getting-started.mdx +++ b/ui-kit/android/getting-started.mdx @@ -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' } ```