/**
* add permission for Android manifest xml
* **/
<
uses-permission
android:name
=
"com.android.launcher.permission.UNINSTALL_SHORTCUT"
/>
*call method for onCreate method
* **/
removeShortcutIcon
();/**
* Adding shortcut for MainActivity
* Home screen
* **/
private
void
removeShortcutIcon() {
//Deleting shortcut for MainActivity
//on Home screen
Intent shortcutIntent =
new
Intent(getApplicationContext(),
MainActivity.
class
);
shortcutIntent.setAction(Intent.ACTION_MAIN);
Intent addIntent =
new
Intent();
addIntent
.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
addIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME,
"your app name"
);
addIntent
.setAction(
"com.android.launcher.action.UNINSTALL_SHORTCUT"
);
getApplicationContext().sendBroadcast(addIntent);
}