Dvt1405
09/01/2020, 3:27 PMval intent = Intent(context, SplashScreen.class).apply{
addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
setAction(Intent.ACTION_MAIN)
intent.addCategory(Intent.CATEGORY_LAUNCHER)
}
startActivity(intent);
but seem it not working. some one can tell me reason why and give me solution for it!?louiscad
09/01/2020, 3:36 PM