How do I restart an Android Activity? I tried the following, but the Activity simply quits.
Activity
public static void restartActivity(Act
This is the way I do it.
val i = Intent(context!!, MainActivity::class.java) i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK) startActivity(i)