Fix DeX mode check

pull/8316/head
Hanif Shersy 2022-05-02 12:23:29 +10:00 zatwierdzone przez AudricV
rodzic ff774a1870
commit cfda073aa5
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: DA92EC7905614198
1 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -120,10 +120,10 @@ public final class DeviceUtils {
final Method getEnabledMethod = desktopModeStateClass
.getDeclaredMethod("getEnabled");
final int enabled = (int) getEnabledMethod.invoke(desktopModeState);
final boolean isEnabled = enabled == desktopModeStateClass
.getDeclaredField("ENABLED").getInt(desktopModeStateClass);
isDeXMode = isEnabled;
if (enabled == desktopModeStateClass
.getDeclaredField("ENABLED").getInt(desktopModeStateClass)) {
isDeXMode = true;
}
} catch (NoSuchFieldException | NoSuchMethodException
| IllegalAccessException | InvocationTargetException e) {
// Device does not support DeX 3.0