You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|**`play_sound`**| Play alarm notification sound. `[boolean]`|`true`|
119
-
|**`repeat_interval`**| Interval set to repeat alarm if schedule_type is "repeat". `[number]` in minutes |`1`|
120
119
|**`schedule_type`**|**Required:** Type of alarm schedule. `"once"` (to show alarm once) or `"repeat"` (to display alarm after set repeat_interval) |`"once"`|
120
+
|**`repeat_interval`**| Interval set to repeat alarm if schedule_type is "repeat". `[minutely, hourly, daily, weekly]`|`"hourly"`|
121
+
|**`interval_value`**| Set interval_value if repeat_interval is minutely and hourly. `[number]`|`1`|
121
122
|**`small_icon`**|**Required:** Set the small icon resource, which will be used to represent the notification in the status bar. eg `"ic_launcher"`. PS: make sure to add the file in your mipmap folders `[project_root]/android/app/src/main/res/mipmap*`|`"ic_launcher"`|
122
123
|**`snooze_interval`**| Interval set to show alarm after snooze button is tapped. `[number]` in minutes |`1`|
123
124
|**`sound_name`**| Set audio file to play when alarm is triggered. example `"sound_name.mp3"` or `"sound_name"`. PS: make sure to add the file in your res/raw folder `[project_root]/android/app/src/main/res/raw`|_None_|
@@ -128,6 +129,8 @@ In your `AndroidManifest.xml`
128
129
|**`vibrate`**| Set vibration when alarm is triggered. `[boolean]`|`true`|
129
130
|**`vibration`**| Set number of milliseconds to vibrate. `[number]`|`100`|
130
131
|**`use_big_text (Android only)`**| Set notification message style as big text. `[boolean]`|`false`|
132
+
|**`volume`**| Set volume. `[number between 0.0 and 1.0]`|`0.5`|
133
+
|**`bypass_dnd (Android only)`**| Sets whether or not notifications posted to this channel can interrupt the user |`false`|
0 commit comments