Skip to content

Instantly share code, notes, and snippets.

@sidward35
Last active March 27, 2018 10:28
Show Gist options
  • Save sidward35/6918809e8026a5097f84c7e4c7a4de81 to your computer and use it in GitHub Desktop.
Save sidward35/6918809e8026a5097f84c7e4c7a4de81 to your computer and use it in GitHub Desktop.
Android programmatically restart app
Intent i = getBaseContext().getPackageManager()
.getLaunchIntentForPackage( getBaseContext().getPackageName() );
i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(i);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment