Boris Tacyniak

Results 167 comments of Boris Tacyniak

Hi, The time of the notification is the one defined in `date`. It cannot be different on each repetition. Regards

Take care of the number of notification you define, in iOS it's 64, and on Samsung too if I remember correctly. If this exceed, notifications will not trigger (even if...

Take care of the number of notification you define, in iOS it's 64, and on Samsung too if I remember correctly. If this exceed, notifications will not trigger (even if...

> Changing it to mutable should fix it I believe. ``` int flags = Build.VERSION.SDK_INT >= Build.VERSION_CODES.M ? PendingIntent.FLAG_UPDATE_CURRENT | PendingIntent.FLAG_MUTABLE : PendingIntent.FLAG_UPDATE_CURRENT; ^ symbol: variable FLAG_MUTABLE location: class PendingIntent...

It's working if we use the API version 31, but not with API 30. ![image](https://user-images.githubusercontent.com/3429329/140481690-41eff28c-57fc-40d0-aa52-3264a83fcca3.png) The only way to avoid this is to force developer to upgrade to target API...

I wondering if someone can test this version: ``` yarn add zo0r/react-native-push-notification#dev ``` The CHANGELOG is available here: https://github.com/zo0r/react-native-push-notification/blob/dev/CHANGELOG.md#unreleased

Hi, I use both in production Application, you should probably investigate in issue and stack overflow. "Duplicate Class" mean you have the firebase library load two tines, remove one it...

Hi, I'm not available for now, AND it's actually YOUR issue, first time reported. YOU have to investigate! if you have this issue, it's probably caused by YOUR graddle configuration....

Hi, Yes it's possible, take a look to the readme: Notification Actions You can set invokeApp to false and start the application later if needed. Regards