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
106 changes: 55 additions & 51 deletions docs.json

Large diffs are not rendered by default.

357 changes: 357 additions & 0 deletions ui-kit/android/v6/ai-assistant-chat-history.mdx

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion ui-kit/android/v6/ai-features.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ description: "Integrate AI-powered conversation starters, smart replies, and con
| AI features | Conversation Starter, Smart Replies, Conversation Summary |
| Key components | [Message List](/ui-kit/android/v6/message-list) (Conversation Starter), [Message Composer](/ui-kit/android/v6/message-composer) (Smart Replies, Summary) |
| Activation | Enable each AI feature from the CometChat Dashboard — UI Kit auto-integrates them, no additional code required |
| Related | [Core Features](/ui-kit/android/v6/core-features), [Extensions](/ui-kit/android/v6/extensions), [AI Agent Guide](/ui-kit/android/guide-ai-agent) |
| Related | [Core Features](/ui-kit/android/v6/core-features), [Extensions](/ui-kit/android/v6/extensions), [AI Agent Guide](/ui-kit/android/v6/guide-ai-agent) |

</Accordion>

Expand Down
4 changes: 2 additions & 2 deletions ui-kit/android/v6/call-features.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Add the following dependency to your `build.gradle.kts` file:
<Tab title="Kotlin (XML Views)">
```kotlin build.gradle.kts
dependencies {
implementation("com.cometchat:chatuikit-kotlin-android:6.0.0-beta.1")
implementation("com.cometchat:chatuikit-kotlin-android:6.0.0-beta2")
implementation("com.cometchat:calls-sdk-android:4.3.3")
}
```
Expand All @@ -42,7 +42,7 @@ dependencies {
<Tab title="Jetpack Compose">
```kotlin build.gradle.kts
dependencies {
implementation("com.cometchat:chatuikit-compose-android:6.0.0-beta.1")
implementation("com.cometchat:chatuikit-compose-android:6.0.0-beta2")
implementation("com.cometchat:calls-sdk-android:4.3.3")
}
```
Expand Down
4 changes: 2 additions & 2 deletions ui-kit/android/v6/calling-integration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Add the CometChat Calls SDK dependency alongside your chosen UI Kit module:
<Tab title="Kotlin (XML Views)">
```kotlin build.gradle.kts
dependencies {
implementation("com.cometchat:chatuikit-kotlin-android:6.0.0-beta.1")
implementation("com.cometchat:chatuikit-kotlin-android:6.0.0-beta2")
implementation("com.cometchat:calls-sdk-android:4.3.3")
}
```
Expand All @@ -28,7 +28,7 @@ dependencies {
<Tab title="Jetpack Compose">
```kotlin build.gradle.kts
dependencies {
implementation("com.cometchat:chatuikit-compose-android:6.0.0-beta.1")
implementation("com.cometchat:chatuikit-compose-android:6.0.0-beta2")
implementation("com.cometchat:calls-sdk-android:4.3.3")
}
```
Expand Down
Loading