Mario Shtika
Mario Shtika
Hello everybody! I had this problem for a long time and I just found out that the master branch has already resolved this issue. All this time I installed it...
Hello @stefaneli31, watch the below timeline to understand what I am saying. **11 Jan 2018**: [0ac0372](https://github.com/katzer/cordova-plugin-local-notifications/commit/a75c0979ceab65b519b53c28047194ce1b82f324) - _Release v0.9.0-beta.2_ (Issue exists) **13 Jan 2018**: [a75c097](https://github.com/katzer/cordova-plugin-local-notifications/commit/0ac0372f259f33683254ae0f3541d5918ec3698a) - _Release 0.9-beta.3_ (Issue exists)...
@stefaneli31 You are right. I think it also needs the `'ANDROID_SUPPORT_V4_VERSION'` on config.xml ``` ```
@MoradAbdelgaber do you have a different `id` for each notification? example: ``` cordova.plugins.notification.local.schedule([ { id: 1, title: 'My first notification' }, { id: 2, title: 'Another notification' } ]); ```
Do you mean [Math.random()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/random) functionality? Can you provide some code sample?
I think the `Math.random()` gives you a random number from 0 to 1. Another approach is the below ``` lastNotificationId: number; constructor() { this.localNotifications.getIds() .then((ids: number[]) => { this.lastNotificationId =...
@Kudla161992 are you still having problem with the countless notifications? the solution is adding the plugin using its repository url: `cordova plugin add https://github.com/katzer/cordova-plugin-local-notifications.git#master` make sure you remove any previous...
Hello @Kudla161992. How are you testing it. I think the above code is triggered every week not every day. Example ``` every : { weekday: 1, hour: 10, minute:0 }...
@VitaliiBlagodir is this pull request going to be merged? It looks like it's a simple solution that fixes a big issue. Is this repository being maintained? If you want, I...
From some internet search, I find out that this is happening because I am using more than one plugin that is being installed through `Cocoapods`.