Skip to content

Commit

Permalink
docs(messaging): how to config iOS remote notifications in Expo (#8212)
Browse files Browse the repository at this point in the history
  • Loading branch information
ceafive authored Jan 23, 2025
1 parent 76bbdb8 commit 9c6f607
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions docs/messaging/usage/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,22 @@ Since Expo SDK51, Notifications entitlement is no longer always added to iOS pro
}
```

## iOS - Remote notification

If you require `remote notification` on Expo, you can also add this to your Expo `app.json` or `app.config.js`

```json
{
"expo": {
"ios": {
"infoPlist": {
"UIBackgroundModes": ["remote-notification"]
}
}
}
}
```

# What does it do

React Native Firebase provides native integration of Firebase Cloud Messaging (FCM) for both Android & iOS. FCM is a cost
Expand Down

0 comments on commit 9c6f607

Please sign in to comment.