Using UNINSTALL_SHORTCUT Intent
- by Lucas S.
I am trying to use the following intent action, but i get an
ActivityNotFoundException in the fisrt case. And nothing at all in the second case.
"com.android.launcher.action.UNINSTALL_SHORTCUT"
I try to use it with the following code:
Intent i = new Intent
("com.android.launcher.action.UNINSTALL_SHORTCUT");
startActivity(i);
Also with the following:
Intent i = new Intent
("com.android.launcher.action.UNINSTALL_SHORTCUT");
sendBroadCast(i);