How to show app accroding activity like sleepmindfulness ? I used this code but my didn't show in wind down that category
Code Block 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]) }