The code below is used to launch Facebook:
Intent intent = new Intent("android.intent.category.LAUNCHER");
intent.setClassName("com.facebook.katana", "com.facebook.katana.LoginActivity");
startActivity(intent);
I trying to accomplish the same for Yahoo Mail App.
Any idea what names need to be used in the Intent and setClassName statement?
Thanks