Skip to content

Instantly share code, notes, and snippets.

@tkis
Created September 17, 2019 07:43
Show Gist options
  • Save tkis/3c2624c6c5f7108c69225c571615b6f2 to your computer and use it in GitHub Desktop.
Save tkis/3c2624c6c5f7108c69225c571615b6f2 to your computer and use it in GitHub Desktop.
private fun restartApplication() {
val i = baseContext.packageManager.getLaunchIntentForPackage(baseContext.packageName)!!
i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP)
startActivity(i)
System.exit(0)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment