From 7a21fa2e37bd267a09e78d5e2cda112b30b8bc7a Mon Sep 17 00:00:00 2001 From: Frank Preel Date: Mon, 7 Nov 2022 17:02:07 +0100 Subject: [PATCH] Enable One plus 8x devices --- src/main/java/ecorp/easy/installer/helpers/DeviceHelper.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/ecorp/easy/installer/helpers/DeviceHelper.java b/src/main/java/ecorp/easy/installer/helpers/DeviceHelper.java index b7d499b3..99b1e2c8 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); } -- GitLab