Is it possible to integrate Apple and/or Firebase Push Notifications to a React Native/Expo app with managed work flow?

Viewed 600

I have a React Native App that I have been working on in Expo's managed workflow. I have acquired a Push Notifications Token through my Apple Developer Account. Is it possible to integrate APN/FBN into my app while still on managed workflow? I would rather not eject yet.

1 Answers

The Expo platform does not lock you into using Expo's application services, and the expo-notifications API is push-service agnostic (you can use it with any push notification service).

So you can use APN, or FCM with Expo without ejecting.

Read more about it on Expo Docs: Sending Notifications with APNs & FCM

Related