mirror of
https://git.mihon.tech/mihonapp/mihon
synced 2024-11-22 21:25:46 +03:00
Don't use default Lenovo "browser" handler
This commit is contained in:
parent
a37be747e9
commit
21bc0f1952
1 changed files with 5 additions and 1 deletions
|
@ -30,7 +30,11 @@ object DeviceUtil {
|
||||||
Build.MANUFACTURER.equals("samsung", ignoreCase = true)
|
Build.MANUFACTURER.equals("samsung", ignoreCase = true)
|
||||||
}
|
}
|
||||||
|
|
||||||
val invalidDefaultBrowsers = listOf("android", "com.huawei.android.internal.app")
|
val invalidDefaultBrowsers = listOf(
|
||||||
|
"android",
|
||||||
|
"com.huawei.android.internal.app",
|
||||||
|
"com.zui.resolver",
|
||||||
|
)
|
||||||
|
|
||||||
@SuppressLint("PrivateApi")
|
@SuppressLint("PrivateApi")
|
||||||
private fun getSystemProperty(key: String?): String? {
|
private fun getSystemProperty(key: String?): String? {
|
||||||
|
|
Loading…
Reference in a new issue