Hi,
Sorry to hear you are having problems getting live activity previews working. Recent Xcode releases have added the new #Preview
macro to replace the older PreviewProvider.
The macro versions are especially important for Widget and LiveActivity previewing as they support features that the PreviewProviders don't. Could you try using a preview of the following type:
#Preview("preview name", as: .content, using: MyLiveActivityAttributes.preview) {
MyLiveActivity()
} contentStates: {
MyLiveActivityAttributes.ContentState.mock1
MyLiveActivityAttributes.ContentState.mock2
}
replacing with variables and types from your project