1--- 2title: Push notifications overview 3sidebar_title: Overview 4description: An overview of Expo's push notification service. 5--- 6 7import { BoxLink } from '~/ui/components/BoxLink'; 8 9Expo makes implementing push notifications easy. All the hassle with device information and communicating with Firebase Cloud Messaging (FCM) or Apple Push Notification Service (APNs) is done behind the scenes. This allows you to treat Android and iOS notifications in the same way and save time both on the front-end and back-end. 10 11<BoxLink 12 title="Setup push notifications, get a push token and credentials" 13 description="Learn how to set up push notifications, get credentials for development and production, and test sending push notifications with a minimal working example." 14 href="/push-notifications/push-notifications-setup" 15/> 16 17<BoxLink 18 title="Send a push notification" 19 description="Learn how to call Expo's Push API with the token when you want to send a notification." 20 href="/push-notifications/sending-notifications" 21/> 22 23<BoxLink 24 title="Receive a push notification" 25 description="Learn how to respond to a notification received by your app and take action based on the event." 26 href="/push-notifications/receiving-notifications" 27/> 28 29<BoxLink 30 title="Common questions and FAQs" 31 description="A collection of common questions about Expo's push notification service." 32 href="/push-notifications/faq" 33/> 34 35## Next 36 37<BoxLink 38 title="Setup push notifications" 39 description="Learn how to setup push notifications, get credentials for development and production, and test sending push notifications." 40 href="/push-notifications/push-notifications-setup" 41/> 42