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

@ -123,7 +123,7 @@ private fun ExtensionContent(
onClickUpdateAll: () -> Unit,
) {
var trustState by remember { mutableStateOf<Extension.Untrusted?>(null) }
val showMiuiWarning = DeviceUtil.isMiui && !DeviceUtil.isMiuiOptimizationDisabled()
val showMiuiWarning = DeviceUtil.isMiui && DeviceUtil.miuiMajorVersion >= 13 && !DeviceUtil.isMiuiOptimizationDisabled()
val uriHandler = LocalUriHandler.current
FastScrollLazyColumn(