Implement React Native Push Notifications with Firebase

React Native Push Notifications with Firebase

Hello folks. I hope you all are doing well.

In this tutorial, you’re going to learn how to implement Firebase push notifications as an app feature using React Native.

There are two main ways you can send push notifications to your app users: local and remote. Local notifications are sent from a React Native application, while remote push notifications are sent from the server or a push notification service such as Firebase Cloud Messaging Service (FCM). We will explore both approaches.

What Are Push Notifications?

Push notification is a small message that users receive on a device. They differ from regular pop-ups because they will appear on the device whether or not the user is currently using the site or app that the notification is tied to.

Push notifications work for both browsers and apps. For browsers, push notifications can show up no matter what site a user is on, as long as they’ve opted in to push notifications. They work very similarly for apps, however, they can pop up on a mobile device at any time, regardless of whether the user is on the app.

Prerequisites for Implement React Native Push Notifications

This tutorial requires basic knowledge of React Native app development. To set up your development machine, follow the official guide.

We are going to use react-native-firebase to implement push notifications in React-native.

First create a project in your Google Firebase Console https://console.firebase.google.com/

Adding Firebase to your Android app

Register your app in Firebase and follow the configuration steps for Android.

Download your google-services.json. Don’t forget to place them in the correct folder.

Also create your React Native project and enter it’s directory

$ react-native init RNPushNotification
$ cd RNPushNotification

Add and link the React Native Firebase package to your app

$ npm install react-native-firebase
$ react-native link react-native-firebase

Configuration Android project

In MainApplication.java

In build.gradle

In AndroidManifest.xml

After everything is set up and configured now, we have to implement the FCM push notification in React Native side using React Native Firebase module.

Receive Push Notifications

Now let’s code the most awaited part… Receiving Notifications! 😉

Before integrating the code please install the following dependencies:

npm install @react-native-community/async-storage

Before the app can get any notifications, it is crucial to ask permission from users. If the user didn’t allow your app to receive notifications, it can never get any unless the user explicitly changes it from Settings.

So, let’s have write below code in App.js file

Listening Notifications

We are now ready to listen to push notification events. Before proceeding, you should know about different types of notifications supported by Firebase.

Read Also: How React Native Improves Developer Productivity

After having configured everything correctly we can test directly from the firebase console:

here’s our notification arrived

There are few points you should know

When an app is in the background and killed in android and you want to listen to data notification, therefore, you need to implement Headless JS functionality.

Android, When app is Not in background or killed and you tab on Notification react-native-firebase library won’t be able to catch title and body of notification. It will show undefined therefore you also need to send title and body in data of notification.

Click here for more blogs…


At BoTree Technologies, we build enterprise applications with our ReactNative team of 10+ engineers.

We also specialize in Ruby on Rails, Python, RPA, AI, Django, NodeJS and ReactJS.

Consulting is free – let us help you grow!

Related posts

Introducing jQuery in Rails 6 Using Webpacker

byNaiya Shah
5 years ago

Rails: define_method in Models

byChandni Thakkar
3 years ago

Top 7 Job Openings for Developers to Apply for in 2023

byShardul Bhatt
2 years ago
Exit mobile version