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 calls/flutter/voip-calling.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
VoIP calling differs from [basic in-app ringing](/calls/flutter/ringing) by leveraging platform-native call frameworks to:
- Show incoming calls on lock screen with system UI
- Handle calls when app is in background or killed
- Integrate with Bluetooth, car systems, and wearables

Check warning on line 15 in calls/flutter/voip-calling.mdx

View check run for this annotation

Mintlify / Mintlify Validation (cometchat-22654f5b) - vale-spellcheck

calls/flutter/voip-calling.mdx#L15

Did you really mean 'wearables'?
- Provide consistent call experience across devices

```mermaid
Expand All @@ -38,7 +38,7 @@
- [CometChat Chat SDK](/sdk/flutter/overview) and [Calls SDK](/calls/flutter/setup) integrated
- Push notifications configured for both platforms:
- [Firebase Cloud Messaging (FCM)](/notifications/android-push-notifications) for Android
- [APNs](/notifications/ios-apns-push-notifications) for iOS
- [APNs](/notifications/ios-push-notifications) for iOS
- [Push notifications enabled](/notifications/push-overview) in CometChat Dashboard

<Warning>
Expand Down Expand Up @@ -90,8 +90,8 @@
| Component | Platform | Purpose |
|-----------|----------|---------|
| `FirebaseMessagingService` | Android | Receives push notifications for incoming calls when app is in background |
| `ConnectionService` | Android | Android Telecom framework integration — manages call state with the system |

Check warning on line 93 in calls/flutter/voip-calling.mdx

View check run for this annotation

Mintlify / Mintlify Validation (cometchat-22654f5b) - vale-spellcheck

calls/flutter/voip-calling.mdx#L93

Did you really mean 'Telecom'?
| `PushKit` / APNs | iOS | Receives VoIP push notifications to wake the app |

Check warning on line 94 in calls/flutter/voip-calling.mdx

View check run for this annotation

Mintlify / Mintlify Validation (cometchat-22654f5b) - vale-spellcheck

calls/flutter/voip-calling.mdx#L94

Did you really mean 'APNs'?
| `CallKit` | iOS | Displays native iOS call UI on lock screen and in-app |
| Method Channel | Flutter | Bridges native call events to Dart code |

Expand Down Expand Up @@ -178,13 +178,13 @@

---

## iOS: APNs + CallKit Integration

Check warning on line 181 in calls/flutter/voip-calling.mdx

View check run for this annotation

Mintlify / Mintlify Validation (cometchat-22654f5b) - vale-spellcheck

calls/flutter/voip-calling.mdx#L181

Did you really mean 'APNs'?

On iOS, incoming VoIP calls are delivered via Apple Push Notification service (APNs) with VoIP push certificates. CallKit provides the native iOS call UI.

Check warning on line 183 in calls/flutter/voip-calling.mdx

View check run for this annotation

Mintlify / Mintlify Validation (cometchat-22654f5b) - vale-spellcheck

calls/flutter/voip-calling.mdx#L183

Did you really mean 'APNs'?

### Step 1: Enable Capabilities

In Xcode, enable the following capabilities for your iOS target:

Check warning on line 187 in calls/flutter/voip-calling.mdx

View check run for this annotation

Mintlify / Mintlify Validation (cometchat-22654f5b) - vale-spellcheck

calls/flutter/voip-calling.mdx#L187

Did you really mean 'Xcode'?
- **Push Notifications**
- **Background Modes** → Voice over IP, Remote notifications

Expand Down
44 changes: 30 additions & 14 deletions docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -6479,22 +6479,26 @@
{
"tab": "Push",
"pages": [
"notifications/push-overview",
{
"group": "Getting Started",
"group": "Overview",
"pages": [
"notifications/push-overview",
"notifications/push-getting-started"
]
},
{
"group": "Platform Integrations",
"pages": [
"notifications/android-push-notifications",
"notifications/ios-apns-push-notifications",
"notifications/ios-fcm-push-notifications",
"notifications/flutter-push-notifications-android",
"notifications/flutter-push-notifications-ios",
"notifications/ios-push-notifications",
"notifications/flutter-push-notifications",
"notifications/react-native-push-notifications-android",
"notifications/react-native-push-notifications-ios",
"notifications/web-push-notifications"
]
},
{
"group": " ",
"group": "Settings",
"pages": [
"notifications/preferences",
"notifications/templates-and-sounds",
Expand Down Expand Up @@ -7096,15 +7100,31 @@
},
{
"source": "/extensions/ios-fcm-push-notifications",
"destination": "/notifications/ios-fcm-push-notifications"
"destination": "/notifications/ios-push-notifications"
},
{
"source": "/extensions/ios-apns-push-notifications",
"destination": "/notifications/ios-apns-push-notifications"
"destination": "/notifications/ios-push-notifications"
},
{
"source": "/notifications/ios-apns-push-notifications",
"destination": "/notifications/ios-push-notifications"
},
{
"source": "/notifications/ios-fcm-push-notifications",
"destination": "/notifications/ios-push-notifications"
},
{
"source": "/extensions/flutter-push-notifications",
"destination": "/notifications/flutter-push-notifications-android"
"destination": "/notifications/flutter-push-notifications"
},
{
"source": "/notifications/flutter-push-notifications-android",
"destination": "/notifications/flutter-push-notifications"
},
{
"source": "/notifications/flutter-push-notifications-ios",
"destination": "/notifications/flutter-push-notifications"
},
{
"source": "/extensions/react-native-push-notifications",
Expand Down Expand Up @@ -8454,10 +8474,6 @@
"destination": "https://assets.cometchat.io/legacy-docs/ai-chatbots/ai-bots/bots.html",
"source": "/ai-chatbots/ai-bots/bots"
},
{
"destination": "https://assets.cometchat.io/legacy-docs/notifications/push-notifications-extension-legacy.html",
"source": "/notifications/flutter-push-notifications"
},
{
"destination": "https://assets.cometchat.io/legacy-docs/sdk/ionic-legacy/additional-message-filtering.html",
"source": "/sdk/ionic-legacy/additional-message-filtering"
Expand Down
6 changes: 2 additions & 4 deletions notifications.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,9 @@ canonical: "https://cometchat.com/docs"

<CardGroup cols={4}>
<Card title="Android" icon={<img src="/images/icons/android.svg" alt="Android" />} href="/notifications/android-push-notifications" horizontal />
<Card title="iOS (APNS)" icon={<img src="/images/icons/swift.svg" alt="iOS (APNS)" />} href="/notifications/ios-apns-push-notifications" horizontal />
<Card title="iOS (FCM)" icon={<img src="/images/icons/swift.svg" alt="iOS (FCM)" />} href="/notifications/ios-fcm-push-notifications" horizontal />
<Card title="iOS" icon={<img src="/images/icons/swift.svg" alt="iOS" />} href="/notifications/ios-push-notifications" horizontal />

<Card title="Flutter (Android)" icon={<img src="/images/icons/flutter.svg" alt="Flutter (Android)" />} href="/notifications/flutter-push-notifications-android" horizontal />
<Card title="Flutter (iOS)" icon={<img src="/images/icons/flutter.svg" alt="Flutter (iOS)" />} href="/notifications/flutter-push-notifications-ios" horizontal />
<Card title="Flutter" icon={<img src="/images/icons/flutter.svg" alt="Flutter" />} href="/notifications/flutter-push-notifications" horizontal />
<Card title="React Native (Android)" icon={<img src="/images/icons/react.svg" alt="React Native (Android)" />} href="/notifications/react-native-push-notifications-android" horizontal />
<Card title="React Native (iOS)" icon={<img src="/images/icons/react.svg" alt="React Native (iOS)" />} href="/notifications/react-native-push-notifications-ios" horizontal />
<Card title="Web" icon={<img src="/images/icons/react.svg" alt="Web" />} href="/notifications/web-push-notifications" horizontal />
Expand Down
Loading