Skip to content

calceytechnologies/react-native-firebase-messaging

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

React Native Firebase - Messaging

Original Documentation


Original Android implementation uses a broadcast receiver to get notifications and when app is in foreground, emits an event for ReactNative with the data. When the app is in quit or background state, puts the notification into a static hashmap and invokes a headless js service.

When the app is brought to foreground from quit or background state by tapping on a notification in tray, ReactNative module gets the message id from the intent and then checks for the message in the hashmap. If found emits an event when the app is in background, or resolves a promise with the message when the app is in quit state.

If a user opens the app and close it while notificatinos are in tray, resources are released including the hashmap and all notifications are lost. Next time when the user opens the app by tapping a notification, app does not receive the message.

The forked messaging library have removed the hashmap and on notification tap, message is aquired via intent extras and passed to the app.

Steps

  • fork react-native-firebase from https://github.com/invertase/react-native-firebase
  • create a branch from the required tag. this branch was created with the tag @react-native-firebase/[email protected] git checkout -b messaging-6.7.1 @react-native-firebase/[email protected]
  • switch to react-native-firebase-messaging repository and create a branch with the above tag name. ex. 6.7.1
  • copy all from react-native-firebase/packages/messaging folder
  • copy .gitignore from react-native-firebase/.gitignore
  • remove **/version.js from .gitignore file
  • copy devDependencies from react-native-firebaase root package.json
  • modify android/src/main/java/io/invertase/firebase/messaging/ReactNativeFirebaseMessagingReceiver.java to remove hashmap
  • modify android/src/main/java/io/invertase/firebase/messaging/ReactNativeFirebaseMessagingModule.java to remove dependencies to hashmap
yarn add https://github.com/calceytechnologies/react-native-firebase-messaging#6.7.1