I have a React Native app with RN version "react-native": "0.72.7"
, and use react-native-notification
with version ^5.1.0
for my push notification service for both Android and iOS applications.
The push notification service works fine in iOS without any issues. The push notification service for the Android app has some problems.
I am dealing with a reloading issue for the Android versions 11 and above
. Following is the scenario for the bug.
Steps
- Open the Android app and keep it in the background
- Receive notification for the app and click on the notification from the notification center
- The app will open but the entire application gets reloaded when it opens and notification details are not viewed properly
Accepted Criteria
- The app should not reload when clicking on the push notifications
Can anybody give me some sense into why this is happening?