Skip to content

Commit

Permalink
Release 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
juank-pa committed Jun 1, 2018
1 parent a9eae26 commit e453c9c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
@@ -1,4 +1,4 @@
### Unreleased
### Version 1.4.0
* Dismissing a notification also triggers a notification event with an specific action id.
* Allow exact notifications in Android. Since Android 4.4 (API level 19) batches repeating and
non-repeating notifications to save battery power making them inexact by default. If being exact
Expand All @@ -8,7 +8,7 @@
day each year.
* Allow setting alarms that will trigger even when Android 6.0 (API level 23) enters doze mode.

Version 1.3.0
### Version 1.3.0
* Fix custom sounds to prevent them triggering when notifications are disabled
or silenced by the user. For this to work the application XML must be updated by removing the
`PlayAudio` service and adding the `NotificationSoundProvider` content provider instead.
Expand Down
@@ -1,7 +1,7 @@
package com.juankpro.ane.localnotif {
/**
* A class of constants representing the different repeat intervals available to use with the
* repeatInterval property of the Notification class.
* repeatInterval property of the Notification class.
* <p>Supported OS: iOS, Android</p>
* @see com.juankpro.ane.localnotif.Notification#repeatInterval
*/
Expand All @@ -27,8 +27,12 @@ package com.juankpro.ane.localnotif {
*/
public static const HOUR_CALENDAR_UNIT:uint = 1 << 5;
/**
* Represents a minute repeat interval
* Represents a minute repeat interval. On Android 6.0 (API level 23) this interval might
* not trigger very frequently while in doze mode, even when setting the notification
* <code>allowWhileIdle</code> property to true. Doze mode will restrict these alarms
* to trigger only once every 10 to 15 minutes.
* <p>Supported OS: iOS, Android</p>
* @see com.juankpro.ane.localnotif.Notification#allowWhileIdle
*/
public static const MINUTE_CALENDAR_UNIT:uint = 1 << 6;
/**
Expand Down

0 comments on commit e453c9c

Please sign in to comment.