// TODO: partition into categories by label like the sample code app
Intent targetIntent = new Intent(Intent.ACTION_MAIN, null);
// TODO: Do we add a new top-level intent? Or just leave it hardcoded like this?
targetIntent.addCategory("android.intent.category.SMOKETEST_INSTRUMENTATION_TEST");
targetIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
return targetIntent;