Why does a Live Activity get .dismissed by the system even when all conditions seem normal?

Hello,

I'm working with Live Activities and noticed that sometimes an activity transitions to .dismissed, even though the user hasn't manually swiped it away and system conditions appear to be completely normal — such as:

  • The activity is still within its intended 8-hour lifetime
  • The battery level is high
  • The app is active or recently active
  • The activity is lightweight (not using frequent updates)

According to the ActivityKit documentation:

/// The Live Activity ended and is no longer visible because a person or the system removed it.
case dismissed

This doesn’t clarify why the system would dismiss an activity when all conditions seem fine.

Additional context: When reviewing system logs via Console.app, we’re seeing messages such as:

liveactivitiesd Removing activity from replicator: 381F3DDC-585B-4021-B075-548606F543DA for relationship IDs: [C7AB9C2A-49DD-43FC-BB58-D768ECF9D354]

This suggests that the system is actively removing the activity, but there’s no API or reason provided that helps us understand why this is happening.

Questions:

  1. What are the system-level triggers that could cause a Live Activity to be dismissed under normal conditions?
  2. Is there a known set of heuristics (e.g., memory pressure, resource constraints) that might apply?
  3. Is there a way to distinguish between system-triggered dismissal and user-initiated swipe-to-dismiss?
  4. Any best practices to reduce the likelihood of unexpected system removal?

This is especially important for our use case, where users rely on Live Activities to view real-time flight and boarding information — and losing the activity unexpectedly negatively affects user experience.

Thanks in advance for any insight!

From the information provided it's unclear why your Live Activity would be dismissed. I recommend documenting this with the Feedback Assistant for further investigation.

Why does a Live Activity get .dismissed by the system even when all conditions seem normal?
 
 
Q