This repository was archived by the owner on Jan 14, 2025. It is now read-only.
This repository was archived by the owner on Jan 14, 2025. It is now read-only.
onNotification is not called when local notification arrives and app is in background in android #1601
Closed
Description
Code for Local Noification
PushNotification.localNotification({
autoCancel: true,
title: 'Test Title',
message: 'Test Message',
vibrate: true,
vibration: 1000,
playSound: false,
data: {},
});
Trying to get in configure onNotification
PushNotification.configure({
onRegister: function(token) {
console.log('TOKEN:', token);
},
onNotification: function(notification) {
console.log('NOTIFICATION:', notification);
},
permissions: {
alert: true,
badge: true,
sound: true,
},
popInitialNotification: true,
requestPermissions: true,
});