P
Size: a a a
P
P
I
P
P
P
setExternalUserId
, то юзер ид будут разныеМ
P
М
P
P
М
AS
М
М
М
М
document.addEventListener('deviceready', () => {
cordova.plugins.notification.local.schedule({
id: 1,
title: 'Test message',
text: 'Message body',
});
cordova.plugins.notification.local.on('click', (notification) => {
alert(notification.id);
console.log('click');
});
}, false);
М
document.addEventListener('deviceready', () => {
cordova.plugins.notification.local.schedule({
id: 1,
title: 'Test message',
text: 'Message body',
launch: true,
actions: [{
id: 'yes',
title: 'yes',
}],
});
cordova.plugins.notification.local.on('yes', (notification) => {
alert(notification.id);
console.log('yes');
});
}, false);
MK