I'm looking for a way to launch the default android launcher programatically, something perhaps like the code below. Or do I have to add something to the manifest file? Thanks!
Intent intent = new Intent();
intent.setClassName("com.android.launcher", "Launcher");
startActivity(intent);