That fuck shit the fascists are using
1package org.selfAuthentication
2
3import android.app.Activity
4import android.os.Build
5
6class AuthenticationUtils {
7
8 companion object{
9 fun forceCloseApplication(aContext: Activity) {
10 if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
11 aContext.finishAndRemoveTask()
12 } else {
13 aContext.finishAffinity()
14 }
15 }
16 }
17}