Disable Android 12 doze requirement

This commit is contained in:
M66B
2021-09-24 07:54:50 +02:00
parent 30b4314c7c
commit eb6652ad6a
3 changed files with 4 additions and 11 deletions

View File

@@ -434,7 +434,7 @@ public class Helper {
}
static boolean isOptimizing12(Context context) {
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.S)
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.S || true)
return false;
Boolean ignoring = Helper.isIgnoringOptimizations(context);