wnyc / cordova-plugin-wakeuptimer

Cordova plugin for a wakeup alarm clock
90 stars 111 forks source link

delete #13

Closed akane-tendo closed 2 years ago

akane-tendo commented 8 years ago

souly1 commented 8 years ago

@r4nm4 , any update on this issue?

souly1 commented 8 years ago

Ok, cool, I'm leaving this plugin as well, too many issues (this one, and requiring multiple alarms, which i solved by changing none js code)

souly1 commented 8 years ago

Sadly I had to eventually go for another plugin: https://github.com/katzer/cordova-plugin-local-notifications.

To achieve the effect of app opening once time arrives I added a option: isFullScreen and currently implemented for Android the wanted behaviour by adding in 'applyContentRecieverMethod': if (isFullScreen){ builder.setFullScreenIntent(contentIntent, true); <---this is the desired effect } else{ builder.setContentIntent(contentIntent); }