Added ignoring emulators for env_fix dialog

This commit is contained in:
Viktor De Pasquale 2019-11-21 14:30:12 +01:00
parent 8a86b30fd1
commit 94f0c61619

View File

@ -1,6 +1,7 @@
package com.topjohnwu.magisk.redesign.home
import android.Manifest
import android.os.Build
import com.topjohnwu.magisk.BuildConfig
import com.topjohnwu.magisk.Config
import com.topjohnwu.magisk.Info
@ -158,7 +159,13 @@ class HomeViewModel(
)
// Don't bother checking env when magisk is not installed, loading or already has been shown
if (invalidStates.any { it == stateMagisk.value } || shownDialog) {
if (
invalidStates.any { it == stateMagisk.value } ||
shownDialog ||
// don't care for emulators either
Build.DEVICE.orEmpty().contains("generic") ||
Build.PRODUCT.orEmpty().contains("generic")
) {
return
}