Don't kill

This commit is contained in:
M66B
2023-01-25 11:06:12 +01:00
parent 2902053f37
commit 1ec3ef4979
5 changed files with 37 additions and 2 deletions

View File

@@ -1514,6 +1514,14 @@ public class Helper {
isSony());
}
static boolean isAggressivelyKilling() {
return (BuildConfig.DEBUG ||
isSamsung() ||
isOnePlus() ||
isHuawei() ||
isXiaomi());
}
static boolean isAndroid12() {
return (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S);
}