Skip to content

Commit c497f69

Browse files
author
Kiro Agent
committed
fixes broken link
1 parent a25d809 commit c497f69

15 files changed

Lines changed: 17 additions & 17 deletions

calls/android/overview.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The CometChat Calls SDK enables real-time voice and video calling capabilities i
1515
Before integrating the Calls SDK, ensure you have:
1616

1717
1. **CometChat Account**: [Sign up](https://app.cometchat.com/signup) and create an app to get your App ID, Region, and API Key
18-
2. **CometChat Users**: Users must exist in CometChat to use calling features. For testing, create users via the [Dashboard](https://app.cometchat.com) or [REST API](/rest-api/chat-apis/users/create-user). Authentication is handled by the Calls SDK - see [Authentication](/calls/android/authentication)
18+
2. **CometChat Users**: Users must exist in CometChat to use calling features. For testing, create users via the [Dashboard](https://app.cometchat.com) or [REST API](/rest-api/users/create). Authentication is handled by the Calls SDK - see [Authentication](/calls/android/authentication)
1919
3. **Android Requirements**:
2020
- Minimum SDK: API Level 24 (Android 7.0)
2121
- AndroidX compatibility

calls/android/ringing.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ void joinCallSession(String sessionId) {
409409
</Tabs>
410410

411411
<Note>
412-
For more details on session customization and controlling the call, see [Actions](/calls/android/actions) and [Listeners](/calls/android/listeners).
412+
For more details on session customization and controlling the call, see [Actions](/calls/android/actions) and [Listeners](/calls/android/events).
413413
</Note>
414414

415415
## End a Call

calls/android/troubleshooting.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ sdk_version: "5.x (Beta)"
1919

2020
| Symptom | Cause | Fix |
2121
| --- | --- | --- |
22-
| `login()` fails with invalid UID | UID doesn't exist in CometChat | Create the user via [Dashboard](https://app.cometchat.com/) or [REST API](/rest-api/chat-apis/users/create-user) first |
22+
| `login()` fails with invalid UID | UID doesn't exist in CometChat | Create the user via [Dashboard](https://app.cometchat.com/) or [REST API](/rest-api/users/create) first |
2323
| Auth token expired | Token has a limited lifetime | Generate a new auth token and call `login()` again |
2424
| `login()` called before `init()` | SDK not initialized | Always call `init()` and wait for the callback before calling `login()` |
2525

calls/android/voip-calling.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Before implementing VoIP calling, ensure you have:
3838

3939
- [CometChat Chat SDK](/sdk/android/overview) and [Calls SDK](/calls/android/setup) integrated
4040
- [Firebase Cloud Messaging (FCM)](/notifications/android-push-notifications) configured
41-
- [Push notifications enabled](/notifications/push-integration) in CometChat Dashboard
41+
- [Push notifications enabled](/notifications/push-overview) in CometChat Dashboard
4242
- Android 8.0+ (API 26+) for ConnectionService support
4343

4444
<Note>
@@ -2150,4 +2150,4 @@ companion object {
21502150
- [Actions](/calls/android/actions) - Control call functionality
21512151
- [Events](/calls/android/events) - Listen for call state changes
21522152
- [Push Notifications](/notifications/android-push-notifications) - FCM setup
2153-
- [Push Integration](/notifications/push-integration) - Register push tokens with CometChat
2153+
- [Push Integration](/notifications/push-overview) - Register push tokens with CometChat

calls/flutter/overview.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The CometChat Calls SDK enables real-time voice and video calling capabilities i
1515
Before integrating the Calls SDK, ensure you have:
1616

1717
1. **CometChat Account**: [Sign up](https://app.cometchat.com/signup) and create an app to get your App ID, Region, and API Key
18-
2. **CometChat Users**: Users must exist in CometChat to use calling features. For testing, create users via the [Dashboard](https://app.cometchat.com) or [REST API](/rest-api/chat-apis/users/create-user). Authentication is handled by the Calls SDK - see [Authentication](/calls/flutter/authentication)
18+
2. **CometChat Users**: Users must exist in CometChat to use calling features. For testing, create users via the [Dashboard](https://app.cometchat.com) or [REST API](/rest-api/users/create). Authentication is handled by the Calls SDK - see [Authentication](/calls/flutter/authentication)
1919
3. **Flutter Requirements**:
2020
- Flutter SDK: `>=2.5.0`
2121
- Dart SDK: `>=2.17.0 <4.0.0`

calls/flutter/troubleshooting.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ sdk_version: "5.x (Beta)"
1919

2020
| Symptom | Cause | Fix |
2121
| --- | --- | --- |
22-
| `login()` fails with invalid UID | UID doesn't exist in CometChat | Create the user via [Dashboard](https://app.cometchat.com/) or [REST API](/rest-api/chat-apis/users/create-user) first |
22+
| `login()` fails with invalid UID | UID doesn't exist in CometChat | Create the user via [Dashboard](https://app.cometchat.com/) or [REST API](/rest-api/users/create) first |
2323
| Auth token expired | Token has a limited lifetime | Generate a new auth token and call `login()` again |
2424
| `login()` called before `init()` | SDK not initialized | Always `await CometChatCalls.init()` before calling `login()` |
2525

calls/flutter/voip-calling.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ Before implementing VoIP calling, ensure you have:
3838
- [CometChat Chat SDK](/sdk/flutter/overview) and [Calls SDK](/calls/flutter/setup) integrated
3939
- Push notifications configured for both platforms:
4040
- [Firebase Cloud Messaging (FCM)](/notifications/android-push-notifications) for Android
41-
- [APNs](/notifications/ios-push-notifications) for iOS
42-
- [Push notifications enabled](/notifications/push-integration) in CometChat Dashboard
41+
- [APNs](/notifications/ios-apns-push-notifications) for iOS
42+
- [Push notifications enabled](/notifications/push-overview) in CometChat Dashboard
4343

4444
<Warning>
4545
VoIP calling in Flutter requires native platform code alongside your Dart code. The push notification handling and system call UI integration must be implemented natively on each platform, then bridged to Flutter via method channels or platform-specific plugins.

calls/ios/overview.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The CometChat Calls SDK enables real-time voice and video calling capabilities i
1515
Before integrating the Calls SDK, ensure you have:
1616

1717
1. **CometChat Account**: [Sign up](https://app.cometchat.com/signup) and create an app to get your App ID, Region, and API Key
18-
2. **CometChat Users**: Users must exist in CometChat to use calling features. For testing, create users via the [Dashboard](https://app.cometchat.com) or [REST API](/rest-api/chat-apis/users/create-user). Authentication is handled by the Calls SDK - see [Authentication](/calls/ios/authentication)
18+
2. **CometChat Users**: Users must exist in CometChat to use calling features. For testing, create users via the [Dashboard](https://app.cometchat.com) or [REST API](/rest-api/users/create). Authentication is handled by the Calls SDK - see [Authentication](/calls/ios/authentication)
1919
3. **iOS Requirements**:
2020
- Minimum iOS version: 16.0
2121
- Xcode 14.0 or later

calls/ios/troubleshooting.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ sdk_version: "5.x (Beta)"
1919

2020
| Symptom | Cause | Fix |
2121
| --- | --- | --- |
22-
| `login()` fails with invalid UID | UID doesn't exist in CometChat | Create the user via [Dashboard](https://app.cometchat.com/) or [REST API](/rest-api/chat-apis/users/create-user) first |
22+
| `login()` fails with invalid UID | UID doesn't exist in CometChat | Create the user via [Dashboard](https://app.cometchat.com/) or [REST API](/rest-api/users/create) first |
2323
| Auth token expired | Token has a limited lifetime | Generate a new auth token and call `login()` again |
2424
| `login()` called before `init()` | SDK not initialized | Always call `init()` and wait for completion before calling `login()` |
2525

calls/ios/voip-calling.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Before implementing VoIP calling, ensure you have:
3838

3939
- [CometChat Chat SDK](/sdk/ios/overview) and [Calls SDK](/calls/ios/setup) integrated
4040
- Apple Push Notification service (APNs) VoIP certificate configured
41-
- [Push notifications enabled](/notifications/push-integration) in CometChat Dashboard
41+
- [Push notifications enabled](/notifications/push-overview) in CometChat Dashboard
4242
- iOS 10.0+ for CallKit support
4343

4444
<Note>

0 commit comments

Comments
 (0)