How to prevent Firebase from intercepting Batch push notifications?
Firebase may intercept notifications on iOS. This can cause issues with Batch's handling of notifications (landings, deeplinks, and more).
On iOS, Firebase may intercept the content of push notifications sent from Batch. As a result, Batch SDK may no longer be able to:
Detect push opens, resulting in broken campaigns statistics (see more here)
Handle deeplinks. The Batch SDK never receives the deeplink and cannot pass it to the app to direct your users to the right page.
Display Mobile Landings. The information that the Batch SDK needs to display the In-App landing page is located in the payload of the notification intercepted by Firebase.
Detecting the issue
If you are facing one of these issues, open your app and look at the logs. The Batch SDK will print an alert:

Fixing the issue
Here are the two steps you need to take to fix the issue:
Switch to a manual integration, as described here: Manual Integration
Then, make sure you intercept the payload of Batch notifications as described here: Intercepting Notifications
Here is how you can test your integration:
You should no longer see the alert in the logs of your app
Send a test push notification to your device and open it (see more here). You should see the following line:
Push - App was opened from a Batch push
.Then, try sending a test notification to your device with a deeplink. Go to the dashboard → Campaigns → Click on "New Campaign" → "Push message" → Head to the message edition part, edit the text of the notification, add a deeplink to the campaign → Click on "Send test", after selecting your device.
Send a preview of an In-App message to your device. Go to the dashboard → Settings → Themes → Select a theme or create one and click the "preview button". The In-App message should be displayed as soon as you click the notification.
Last updated
Was this helpful?