Skip to content

Instantly share code, notes, and snippets.

@Arunshaik2001
Created November 23, 2022 15:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Arunshaik2001/e2a7c5d7e3655c4470ae88bacd9361b8 to your computer and use it in GitHub Desktop.
Save Arunshaik2001/e2a7c5d7e3655c4470ae88bacd9361b8 to your computer and use it in GitHub Desktop.
private fun addDynamicShortcut(shortcut: ShortcutInfo) {
if (atLeastAndroid11()) {
shortcutManager.pushDynamicShortcut(shortcut)
} else {
shortcutManager.addDynamicShortcuts(listOf(shortcut))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment