iOS specific configuration
To enable push notifications for iOS, you need to configure specific capabilities and handle the necessary app delegate code. Let’s walk through the steps.
Update iOS pods
Run pod install
in the ios folder of your flutter application to install/update the pod dependencies.
Add capabilities in iOS application
-
Open your Flutter project in Xcode.
-
Inside the Targets section, select your app target, and go to Signing & Capabilities.
-
Click on + Capability and add Push Notifications and Background Modes capabilities.
-
In Background Modes, select the Remote Notifications option. This is required to receive background push notifications. Learn more about background notifications here.
Register for push notification in AppDelegate.swift file
To handle push notifications in your iOS app, add the following code to AppDelegate.swift
:
- Import the required packages:
- If you are using Firebase Cloud Messaging (FCM), add the Firebase imports:
- Extend
FlutterAppDelegate
and implement the necessary methods:
Add a Notification Service Extension
To ensure rich push notifications and proper handling of incoming messages, add a Notification Service Extension
to your iOS project:
-
In Xcode go to File > New > Target.
-
Select
Notification Service Extension
from the template list. -
Provide a product name, select your development team, choose Swift as the language, and click Finish.
-
Replace the contents of the generated
NotificationService.swift
file with the following code:
Add Fyno SDK to the Notification Service Extension
To allow the Notification Service Extension to use the Fyno SDK, you need to import it:
-
In Xcode, select your Notification Service Extension target.
-
Under
Frameworks and Libraries
, click on the + button. -
Under
Add Other
, click on theAdd Package Dependency
. -
Search for
https://github.com/fynoio/ios-sdk
in the text box. -
Select and add the
ios-sdk
package. -
Ensure the target is set to the Notification Service Extension you created, then click
Add Package
.