-
-
Save Arunshaik2001/e2a7c5d7e3655c4470ae88bacd9361b8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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