Shortcut for android for every version, android shortcut for oreo, android shortcut for nougat.
if (Build.VERSION. SDK_INT >= 26 ){ try { ShortcutManager shortcutManager= context .getSystemService(ShortcutManager. class ); Intent shortcutIntent= new Intent(getApplicationContext(),ClassCalledOnShortcutClicked. class ); shortcutIntent.setAction(Intent. ACTION_MAIN ); ShortcutInfo postInfo= new ShortcutInfo.Builder( context , "ShortcutName" ) .setShortLabel( "ShortcutShortLabel" ) .setLongLabel( "ShortcutLongLabel" ) .setDisabledMessage( "DisableMessage" ) .setIcon(Icon. createWithResource ( context ,R.mipmap. ic_launcher )) .setIntent(shortcutIntent) .build(); shortcutManager.setDynamicShortcuts(Arrays. asList (postInfo)); //to pin shortcut to mobile in oreo if (shortcut...