diff --git a/src/main/java/ecorp/easy/installer/helpers/DeviceHelper.java b/src/main/java/ecorp/easy/installer/helpers/DeviceHelper.java index b7d499b3cec136fa5d2e2308da04e1547b04852c..99b1e2c876577f18229de9bfd467c68a93cd1a68 100644 --- a/src/main/java/ecorp/easy/installer/helpers/DeviceHelper.java +++ b/src/main/java/ecorp/easy/installer/helpers/DeviceHelper.java @@ -78,11 +78,11 @@ public class DeviceHelper { * Returns true if the device is blacklisted. A blaclisted device embeds flashs scripts but * is not detected by the Easy installer (use case Murena ROM has an issue we nned to wait for the next ROM release * but developping procces is allowed). - * @param key the ADB device code's name (example: Samsung galaxy S7 => herolte) + * @param key the ADB device code's name (example: Samsung galaxy S7 => herolte comma separated) * @return can return null if no key matches */ public static boolean isDeviceBlacklisted(String key){ - List blaclisted = Arrays.asList("OnePlus8Pro", "OnePlus8"); + List blaclisted = Arrays.asList(); return blaclisted.contains(key); }