From 4287c5f35c002b170100df34dbb8f8abac2a4fbf Mon Sep 17 00:00:00 2001 From: Jon Chambers Date: Mon, 15 Jan 2024 17:16:12 -0500 Subject: [PATCH] Add a "start" event for Live Activities --- .../com/eatthepath/pushy/apns/util/LiveActivityEvent.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pushy/src/main/java/com/eatthepath/pushy/apns/util/LiveActivityEvent.java b/pushy/src/main/java/com/eatthepath/pushy/apns/util/LiveActivityEvent.java index ccd1460bb..78ff9a176 100644 --- a/pushy/src/main/java/com/eatthepath/pushy/apns/util/LiveActivityEvent.java +++ b/pushy/src/main/java/com/eatthepath/pushy/apns/util/LiveActivityEvent.java @@ -25,11 +25,16 @@ /** * An enumeration of accepted actions for Live Activity notification payloads. * - * @see Updating and ending your Live Activity with remote push notifications + * @see Starting and updating Live Activities with ActivityKit push notifications * * @since 0.15.2 */ public enum LiveActivityEvent { + /** + * Used to start a Live Activity. + */ + START("start"), + /** * Used to update a Live Activity. */