Post not yet marked as solved
Click to stop watching this thread.
You have stopped watching this post. Click to start watching again.
Post marked as unsolved with 2 replies
67
Views
Wind Down
How to show app accroding activity like sleepmindfulness ? I used this code but my didn't show in wind down that category
let playSoundIntent = INPlayMediaIntent.init(mediaItems: nil, mediaContainer: mediaItem, playShuffled: false,playbackRepeatMode: .none,resumePlayback: false)
if #available(iOS 14.0, *) {
playSoundIntent.shortcutAvailability = .sleepMindfulness
} else {
}
playSoundIntent.suggestedInvocationPhrase = "Play Calm Exercise"
if let shortcut = INShortcut(intent: playSoundIntent){ INVoiceShortcutCenter.shared.setShortcutSuggestions([shortcut])
}