Just in case, if someone else gets here with the same question, there is a solution.
Intent intent = new Intent("android.intent.action.MAIN"); intent.setComponent(ComponentName.unflattenFromString("com.google.android.email/com.android.email.activity.Welcome")); intent.addCategory("android.intent.category.LAUNCHER"); startActivity(intent);
You can get the component name from LogCat. The only problem, I think, is if the user is using another email application.
source share