fix: HyperOS 2.0 handleAppIcon param (#212)

This commit is contained in:
YuSaki丶Kanade
2024-11-06 20:39:45 +08:00
committed by GitHub
parent b10ff658ab
commit e9e27b1d5a

View File

@@ -1102,8 +1102,9 @@ object SystemUIHooker : YukiBaseHooker() {
/** /**
* MIUI 14 ([RemoteViewsClass], [NotificationClass]) * MIUI 14 ([RemoteViewsClass], [NotificationClass])
* HyperOS ([RemoteViewsClass], [NotificationClass], [ContextClass]) * HyperOS ([RemoteViewsClass], [NotificationClass], [ContextClass])
* HyperOS 2.0 ([RemoteViewsClass], [NotificationClass], [ContextClass], [BooleanClass])
*/ */
paramCount(numRange = 2..3) paramCount(numRange = 2..4)
}?.hook()?.intercept() }?.hook()?.intercept()
/** /**
* 尝试修复从 MIUI 14 开始出现的一个崩溃问题 * 尝试修复从 MIUI 14 开始出现的一个崩溃问题
@@ -1128,4 +1129,4 @@ object SystemUIHooker : YukiBaseHooker() {
} ?: false } ?: false
} }
} }
} }