Skip to content
Merged
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
4 changes: 2 additions & 2 deletions chat-builder/android/integration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@ In your app module `build.gradle`:
```gradle
dependencies {
// CometChat UIKit
implementation 'com.cometchat:chat-uikit-android:5.2.2'
implementation 'com.cometchat:chat-uikit-android:5.2.7'

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

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.3.1 }`
`dependencies { implementation 'com.cometchat:calls-sdk-android:4.3.2 }`

</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.3.1'` 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.2'` 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.3.1'
implementation 'com.cometchat:calls-sdk-android:4.3.2'
}
```

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.3.1'` 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.2'` in the dependencies section of the app-level `build.gradle` file.

</Note>

Expand Down
2 changes: 1 addition & 1 deletion sdk/flutter/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Minimum Requirements
<Tabs>
<Tab title="Dart">
```dart
cometchat_sdk: ^4.0.30
cometchat_sdk: ^4.0.32
```

</Tab>
Expand Down
2 changes: 1 addition & 1 deletion sdk/flutter/setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Minimum Requirement
<Tabs>
<Tab title="Dart">
```dart
cometchat_sdk: ^4.0.30
cometchat_sdk: ^4.0.32
```

</Tab>
Expand Down
8 changes: 4 additions & 4 deletions ui-kit/android/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,8 @@ Inside `libs.versions.toml`, add the CometChat Chat UI Kit version under the `[v

```toml libs.versions.toml
[versions]
cometchat-ui-kit = "5.2.6"
cometchat-calls-sdk = "4.3.1"
cometchat-ui-kit = "5.2.7"
cometchat-calls-sdk = "4.3.2"
```

Under the `[libraries]` section, define the library and reference the version:
Expand Down Expand Up @@ -171,10 +171,10 @@ Open the **app level** `build.gradle` file and add the following dependency to f
```gradle build.gradle
dependencies {
// CometChat UIKit
implementation 'com.cometchat:chat-uikit-android:5.2.2'
implementation 'com.cometchat:chat-uikit-android:5.2.7'

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

Expand Down
12 changes: 12 additions & 0 deletions ui-kit/flutter/core-features.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,18 @@ Mentions is a robust feature provided by CometChat that enhances the interactivi
| [MessageComposer](/ui-kit/flutter/message-composer) | [MessageComposer](/ui-kit/flutter/message-composer)is a widget that allows users to craft and send various types of messages, including the usage of the Mentions feature for direct addressing within the conversation. |
| [MessageList](/ui-kit/flutter/message-list) | [MessageList](/ui-kit/flutter/message-list) is a widget that displays a list of sent and received messages. It also supports the rendering of Mentions, enhancing the readability and interactivity of conversations. |

## Report Message

The Report Message feature allows users to report inappropriate or harmful messages within the chat. Users can choose from predefined reasons and provide additional remarks for detailed context. This feature helps maintain a safe and respectful chat environment.

<Frame>
<img src="/images/android-flag-message.png" />
</Frame>

| Components | Functionality |
| ----------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [Message List](/ui-kit/flutter/message-list) | [Message List](/ui-kit/flutter/message-list) provides the "Report Message" option in the message actions menu, allowing users to initiate the reporting process for inappropriate messages. |

## Threaded Conversations

The Threaded Conversations feature enables users to respond directly to a specific message in a chat. This keeps conversations organized and enhances the user experience by maintaining context, especially in group chats.
Expand Down
4 changes: 2 additions & 2 deletions ui-kit/flutter/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ To get started, create a new flutter application project.
To use this UI Kit in your Flutter project, you'll need to add the following dependency to the dependencies section of your `pubspec.yaml` file:

```yaml pubspec.yaml
cometchat_chat_uikit: ^5.2.5
cometchat_chat_uikit: ^5.2.6
cometchat_calls_uikit: ^5.0.11 #Optional: Include if you're using Audio/Video Calling
```

Expand All @@ -74,7 +74,7 @@ Final `pubspec.yaml`
flutter:
sdk: flutter

cometchat_chat_uikit: ^5.2.5
cometchat_chat_uikit: ^5.2.6
cometchat_calls_uikit: ^5.0.11 #Optional: Include if you're using Audio/Video Calling
cupertino_icons: ^1.0.8

Expand Down
2 changes: 2 additions & 0 deletions ui-kit/flutter/message-list.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -445,6 +445,8 @@ Below is a list of customizations along with corresponding code snippets:
| `hideDateSeparator` | `bool?` | Hide the date separator |
| `mentionAllLabelId` | `String?` | Allows setting a custom label id for group mentions (@channel, @everyone, etc.). |
| `mentionAllLabel` | `String?` | Allows setting a custom label for group mentions (@channel, @everyone, etc.). |
| `hideFlagOption` | `bool?` | Hide the visibility of the “Report” option in the message actions menu. |
| `hideFlagRemarkField` | `bool?` | Hide the remark text area in the flag message dialog. |

***

Expand Down
1 change: 1 addition & 0 deletions ui-kit/ios/message-list.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,7 @@ Below is a list of customizations along with corresponding code snippets
| hideSuggestedMessages | Hides the suggested message replies. | `hideSuggestedMessages = true` |
| set(emptyChatGreetingView:) | Custom view displayed when the AI assistant chat is empty. | `emptyChatGreetingView = { /* custom view */ }` |
| set(streamingSpeed:) | Sets the speed of streaming for AI assistant messages. | `streamingSpeed = 50` |
| goToMessage(withId:) | Scrolls the message list to a specific message, making it visible to the user based on the provided message ID | `goToMessage(messageId: Int)` |

***

Expand Down
12 changes: 12 additions & 0 deletions ui-kit/react-native/core-features.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,18 @@ Mentions is a robust feature provided by CometChat that enhances the interactivi
| [MessageComposer](/ui-kit/react-native/message-composer) | [MessageComposer](/ui-kit/react-native/message-composer) component allows users to compose and send various types of messages, including support for the Mentions feature to directly address participants within the conversation. |
| [MessageList](/ui-kit/react-native/message-list) | [MessageList](/ui-kit/react-native/message-list) component displays a list of sent and received messages. It also supports rendering Mentions, enhancing the clarity and interactivity of conversations by highlighting direct references to users. |

## Report Message

The Report Message feature allows users to report inappropriate or harmful messages within the chat. Users can choose from predefined reasons and provide additional remarks for detailed context. This feature helps maintain a safe and respectful chat environment.

<Frame>
<img src="/images/android-flag-message.png" />
</Frame>

| Components | Functionality |
| ----------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [Message List](/ui-kit/react-native/message-list) | [Message List](/ui-kit/react-native/message-list) provides the "Report Message" option in the message actions menu, allowing users to initiate the reporting process for inappropriate messages. |

## Threaded Conversations

The Threaded Conversations feature enables users to respond directly to a specific message in a chat. This keeps conversations organized and enhances the user experience by maintaining context, especially in group chats.
Expand Down