shortcuts
Entry point of the shortcut DSL.
context.shortcuts {
dynamic("compose_email") {
shortLabel = "Compose"
icon = R.drawable.ic_compose
intent {
action = Intent.ACTION_VIEW
data = "myapp://compose".toUri()
putExtra("source", "shortcut")
}
}
}Content copied to clipboard
All operations are backed by androidx.core.content.pm.ShortcutManagerCompat: dynamic shortcuts are a safe no-op below API 25 and pinned shortcut requests fall back to the legacy launcher broadcast below API 26.