Only show MIUI extension warning on MIUI >= 13

Related to #8834
This commit is contained in:
arkon
2023-01-08 15:04:06 -05:00
parent 3be05fbf9b
commit 4cd01428ed
3 changed files with 16 additions and 2 deletions

View File

@ -10,6 +10,20 @@ object DeviceUtil {
getSystemProperty("ro.miui.ui.version.name")?.isNotEmpty() ?: false
}
/**
* Extracts the MIUI major version code from a string like "V12.5.3.0.QFGMIXM".
*
* @return MIUI major version code (e.g., 13) or -1 if can't be parsed.
*/
val miuiMajorVersion by lazy {
if (!isMiui) return@lazy -1
Build.VERSION.INCREMENTAL
.substringBefore('.')
.trimStart('V')
.toIntOrNull() ?: -1
}
@SuppressLint("PrivateApi")
fun isMiuiOptimizationDisabled(): Boolean {
val sysProp = getSystemProperty("persist.sys.miui_optimization")