Update detection of disabled MIUI Optimization

pull/5574/head
arkon 3 years ago
parent 447ee4bd09
commit a252a8acee

@ -11,7 +11,8 @@ object MiuiUtil {
@SuppressLint("PrivateApi")
fun isMiuiOptimizationDisabled(): Boolean {
if ("0" == getSystemProperty("persist.sys.miui_optimization")) {
val sysProp = getSystemProperty("persist.sys.miui_optimization")
if (sysProp == "0" || sysProp == "false") {
return true
}

Loading…
Cancel
Save