Live Activities implementation tutorial
This document describes how to register and manage Live Activities using the Adobe Journey Optimizer extension.
Pre-requisites
- Integrate and register Messaging extension in your app.
- Ensure your app targets iOS 16.1 or newer.
- For push-to-start token support, ensure your app targets iOS 17.2 or newer.
- Configure your app to support Live Activities by following Apple's Live Activities documentation.
Step 1: Define your LiveActivityAttributes
Define an attribute type that conforms to the LiveActivityAttributes protocol. This protocol extends Apple's ActivityAttributes and adds a required liveActivityData property for Adobe Experience Platform integration.
Live Activities support two delivery models:
- Transactional - Targets a single Live Activity on a specific device. Use
LiveActivityData(liveActivityID:)to assign a unique identifier. - Broadcast (iOS 18+) - Targets all Live Activities subscribed to a channel with a single push. Use
LiveActivityData(channelID:)to assign a shared channel identifier.
data-variant=info
data-slots=text
liveActivityData property is mandatory - it is required by the LiveActivityAttributes protocol. For transactional activities, provide a liveActivityID. For broadcast activities, provide a channelID. The SDK uses this data to track and manage the Live Activity through Adobe Experience Platform.data-slots=heading, code
data-repeat=1
Swift
import ActivityKit
import AEPMessagingLiveActivity
@available(iOS 16.1, *)
struct FoodDeliveryLiveActivityAttributes: LiveActivityAttributes {
var liveActivityData: LiveActivityData
var restaurantName: String
var orderNumber: String
struct ContentState: Codable, Hashable {
var driverName: String
var deliveryTime: String
var orderStatus: String
}
}
Step 2: Register Live Activity types
Register your attribute types with the Messaging extension using the registerLiveActivities API. Call this after the Messaging extension has been registered with MobileCore, typically in your AppDelegate.
Once registered, the extension automatically collects push-to-start tokens (iOS 17.2+) and activity update tokens, and forwards them to Adobe Experience Platform.
data-slots=heading, code
data-repeat=1
Swift
import AEPMessaging
import AEPMessagingLiveActivity
import ActivityKit
if #available(iOS 16.1, *) {
Messaging.registerLiveActivities([
FoodDeliveryLiveActivityAttributes.self
])
}
Step 3: Start a Live Activity
There are two ways to start a Live Activity:
- Locally (iOS 16.1+) - The app calls
Activity.request()while in the foreground. - Remotely via push-to-start (iOS 17.2+) - A server sends a push notification to a push-to-start token, which starts the activity even when the app is in the background or terminated.
Regardless of how the activity is started, the Messaging extension automatically collects the activity update token and forwards it to Adobe Experience Platform.
Local start vs. remote start
Activity.request() directly"event": "start" to a push-to-start tokenattributescontentState parametercontent-stateLocal start
Start a Live Activity from your app using Apple's ActivityKit APIs.
Transactional
data-slots=heading, code
data-repeat=1
Swift
import ActivityKit
if #available(iOS 16.1, *) {
let attributes = FoodDeliveryLiveActivityAttributes(
liveActivityData: LiveActivityData(liveActivityID: "order-12345"),
restaurantName: "Pizza Palace",
orderNumber: "12345"
)
let initialContentState = FoodDeliveryLiveActivityAttributes.ContentState(
driverName: "John Doe",
deliveryTime: "15 minutes",
orderStatus: "Preparing"
)
do {
let activity = try Activity<FoodDeliveryLiveActivityAttributes>.request(
attributes: attributes,
contentState: initialContentState,
pushType: .token
)
print("Live Activity started with ID: \(activity.id)")
} catch {
print("Error starting Live Activity: \(error.localizedDescription)")
}
}
Broadcast (iOS 18+)
data-slots=heading, code
data-repeat=1
Swift
import ActivityKit
if #available(iOS 18.0, *) {
let channelID = "34zeQRIvEfEAAArq/RXKSw=="
let attributes = GameScoreLiveActivityAttributes(
liveActivityData: LiveActivityData(channelID: channelID),
homeTeam: "Chiefs",
awayTeam: "Eagles"
)
let initialContentState = GameScoreLiveActivityAttributes.ContentState(
homeScore: 0,
awayScore: 0,
quarter: "1st"
)
do {
let activity = try Activity<GameScoreLiveActivityAttributes>.request(
attributes: attributes,
contentState: initialContentState,
pushType: .channel(channelID)
)
print("Broadcast Live Activity started with ID: \(activity.id)")
} catch {
print("Error starting Live Activity: \(error.localizedDescription)")
}
}
Remote start via push-to-start (iOS 17.2+)
Use "event": "start" with a push-to-start token to remotely start a Live Activity without any app interaction. The payload must include attributes-type (the fully qualified name of your ActivityAttributes struct), all static attributes, and the initial content-state.
Transactional
data-slots=heading, code
data-repeat=1
JSON
{
"aps": {
"timestamp": 1234567890,
"event": "start",
"attributes-type": "FoodDeliveryLiveActivityAttributes",
"attributes": {
"liveActivityData": {
"liveActivityID": "order-12345",
"origin": "remote"
},
"restaurantName": "Pizza Palace",
"orderNumber": "12345"
},
"content-state": {
"driverName": "John Doe",
"deliveryTime": "15 minutes",
"orderStatus": "Preparing"
},
"alert": {
"title": "Order Started",
"body": "Your order from Pizza Palace is being prepared!"
}
}
}
Broadcast (iOS 18+)
For broadcast, use channelID in liveActivityData and include the matching input-push-channel key inside aps.
data-slots=heading, code
data-repeat=1
JSON
{
"aps": {
"timestamp": 1234567890,
"event": "start",
"input-push-channel": "34zeQRIvEfEAAArq/RXKSw==",
"attributes-type": "FoodDeliveryLiveActivityAttributes",
"attributes": {
"liveActivityData": {
"channelID": "34zeQRIvEfEAAArq/RXKSw==",
"origin": "remote"
},
"restaurantName": "Pizza Palace",
"orderNumber": "12345"
},
"content-state": {
"driverName": "John Doe",
"deliveryTime": "15 minutes",
"orderStatus": "Preparing"
},
"alert": {
"title": "Order Started",
"body": "Your order from Pizza Palace is being prepared!"
}
}
}
data-variant=info
data-slots=text
Step 4: Update and end Live Activities via push
Once a Live Activity is running (whether started locally or remotely), Adobe Journey Optimizer can update or end it by sending push notifications to the activity update token.
data-variant=info
data-slots=text
liveActivityData object must be included inside attributes in every update and end payload. Use liveActivityID for transactional payloads or channelID (with a matching input-push-channel in aps) for broadcast payloads. This is required for the SDK to identify and route the payload to the correct Live Activity.data-variant=warning
data-slots=text
timestamp field in the payload must always be greater than the timestamp of the previous start or update. If the timestamp is equal to or older than the last known value, the system ignores the payload and the Live Activity will not be updated.Update payload
Use "event": "update" to update the Live Activity content. The content-state must match your ContentState struct. An optional alert triggers a visible notification on the Lock Screen.
Transactional
data-slots=heading, code
data-repeat=1
JSON
{
"aps": {
"timestamp": 1234567890,
"event": "update",
"attributes": {
"liveActivityData": {
"liveActivityID": "order-12345",
"origin": "remote"
}
},
"content-state": {
"driverName": "John Doe",
"deliveryTime": "5 minutes",
"orderStatus": "Out for delivery"
},
"alert": {
"title": "Delivery Update",
"body": "Your order is out for delivery!"
}
}
}
Broadcast (iOS 18+)
data-slots=heading, code
data-repeat=1
JSON
{
"aps": {
"timestamp": 1234567890,
"event": "update",
"input-push-channel": "34zeQRIvEfEAAArq/RXKSw==",
"attributes": {
"liveActivityData": {
"channelID": "34zeQRIvEfEAAArq/RXKSw==",
"origin": "remote"
}
},
"content-state": {
"driverName": "John Doe",
"deliveryTime": "5 minutes",
"orderStatus": "Out for delivery"
},
"alert": {
"title": "Delivery Update",
"body": "Your order is out for delivery!"
}
}
}
End payload
Use "event": "end" to end the Live Activity. The activity is dismissed from the Lock Screen according to the system default (up to 4 hours).
Transactional
data-slots=heading, code
data-repeat=1
JSON
{
"aps": {
"timestamp": 1234567890,
"event": "end",
"attributes": {
"liveActivityData": {
"liveActivityID": "order-12345",
"origin": "remote"
}
},
"content-state": {
"driverName": "John Doe",
"deliveryTime": "Delivered",
"orderStatus": "Completed"
}
}
}
Broadcast (iOS 18+)
data-slots=heading, code
data-repeat=1
JSON
{
"aps": {
"timestamp": 1234567890,
"event": "end",
"input-push-channel": "34zeQRIvEfEAAArq/RXKSw==",
"attributes": {
"liveActivityData": {
"channelID": "34zeQRIvEfEAAArq/RXKSw==",
"origin": "remote"
}
},
"content-state": {
"driverName": "John Doe",
"deliveryTime": "Delivered",
"orderStatus": "Completed"
}
}
}
End payload with dismissal date
Include "dismissal-date" (a Unix timestamp) to control exactly when the ended activity is removed from the Lock Screen. This is useful when you want the final state to remain visible for a specific duration after the activity ends.
Transactional
data-slots=heading, code
data-repeat=1
JSON
{
"aps": {
"timestamp": 1234567890,
"event": "end",
"dismissal-date": 1234575490,
"attributes": {
"liveActivityData": {
"liveActivityID": "order-12345",
"origin": "remote"
}
},
"content-state": {
"driverName": "John Doe",
"deliveryTime": "Delivered",
"orderStatus": "Completed"
}
}
}
Broadcast (iOS 18+)
data-slots=heading, code
data-repeat=1
JSON
{
"aps": {
"timestamp": 1234567890,
"event": "end",
"dismissal-date": 1234575490,
"input-push-channel": "34zeQRIvEfEAAArq/RXKSw==",
"attributes": {
"liveActivityData": {
"channelID": "34zeQRIvEfEAAArq/RXKSw==",
"origin": "remote"
}
},
"content-state": {
"driverName": "John Doe",
"deliveryTime": "Delivered",
"orderStatus": "Completed"
}
}
}
Best practices
- Register early: Call
registerLiveActivitiesduring app initialization, after the Messaging extension has been registered withMobileCore. This ensures tokens are collected as soon as possible. - Register all types: If your app has multiple Live Activity types (e.g., delivery tracking, game scores, flight status), each type must be passed to
registerLiveActivities. The SDK only collects and forwards tokens for registered types - any unregistered type will be ignored. - Use unique identifiers: For transactional Live Activities, ensure each activity uses a unique
liveActivityID. This allows Adobe Journey Optimizer to target the correct activity when sending updates or end events. - Configure channelID for the correct environment: For broadcast Live Activities (iOS 18+), the
channelIDinliveActivityDataandinput-push-channelinapsmust use the same value and must match your Apple Push Notification service (APNs) environment (Production or Sandbox). Using the wrong environment's channel ID will result in updates not being delivered. - Keep timestamps increasing: Each push payload's
timestampmust be strictly greater than the previous one. The system silently drops payloads with stale or equal timestamps. - Test on device or simulator: Live Activities can be tested on a physical device or in the iOS Simulator. Push-to-start token support requires iOS 17.2+.
- Token lifecycle: Push-to-start tokens are available before a Live Activity begins and enable starting activities remotely via push notification (iOS 17.2+). Activity update tokens are generated when a Live Activity starts and become invalid when the activity ends. The Messaging extension handles token collection and forwarding automatically - no additional code is required.
- Handle activity expiration: Live Activities have a maximum duration of 8 hours. Plan your update and end flows accordingly to avoid stale activities on the user's device.