Samsung DeX should only be checked on Samsung devices
Co-authored-by: opusforlife2 <53176348+opusforlife2@users.noreply.github.com>
This commit is contained in:
parent
eea4f0f41c
commit
f10d591462
1 changed files with 7 additions and 2 deletions
|
@ -1,5 +1,7 @@
|
||||||
package org.schabi.newpipe.util;
|
package org.schabi.newpipe.util;
|
||||||
|
|
||||||
|
import static android.content.Context.INPUT_SERVICE;
|
||||||
|
|
||||||
import android.annotation.SuppressLint;
|
import android.annotation.SuppressLint;
|
||||||
import android.app.UiModeManager;
|
import android.app.UiModeManager;
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
|
@ -27,11 +29,10 @@ import org.schabi.newpipe.R;
|
||||||
|
|
||||||
import java.lang.reflect.Method;
|
import java.lang.reflect.Method;
|
||||||
|
|
||||||
import static android.content.Context.INPUT_SERVICE;
|
|
||||||
|
|
||||||
public final class DeviceUtils {
|
public final class DeviceUtils {
|
||||||
|
|
||||||
private static final String AMAZON_FEATURE_FIRE_TV = "amazon.hardware.fire_tv";
|
private static final String AMAZON_FEATURE_FIRE_TV = "amazon.hardware.fire_tv";
|
||||||
|
private static final boolean SAMSUNG = Build.MANUFACTURER.equals("samsung");
|
||||||
private static Boolean isTV = null;
|
private static Boolean isTV = null;
|
||||||
private static Boolean isFireTV = null;
|
private static Boolean isFireTV = null;
|
||||||
|
|
||||||
|
@ -120,6 +121,10 @@ public final class DeviceUtils {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!SAMSUNG) {
|
||||||
|
return false;
|
||||||
|
// DeX is Samsung-specific, skip the checks below on non-Samsung devices
|
||||||
|
}
|
||||||
// DeX check for standalone and multi-window mode, from:
|
// DeX check for standalone and multi-window mode, from:
|
||||||
// https://developer.samsung.com/samsung-dex/modify-optimizing.html
|
// https://developer.samsung.com/samsung-dex/modify-optimizing.html
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Reference in a new issue