Skip to content

Instantly share code, notes, and snippets.

@ok3141
Created May 7, 2015 13:24
Show Gist options
  • Save ok3141/7734ac03cedbd7a57222 to your computer and use it in GitHub Desktop.
Save ok3141/7734ac03cedbd7a57222 to your computer and use it in GitHub Desktop.
Relaunch Android app
Intent intent = context.getPackageManager().getLaunchIntentForPackage(context.getPackageName());
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK | Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(intent);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment