From f4e23cbb8a24638318d8cee20a1991c51855d9d2 Mon Sep 17 00:00:00 2001 From: Pun Butrach Date: Thu, 15 Aug 2024 12:45:00 +0700 Subject: [PATCH] feat(SCB Easy): Remove broken `Remove debugging detection` patch (#3518) Co-authored-by: oSumAtrIX --- .../detection/debugging/RemoveDebuggingDetectionPatch.kt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/kotlin/app/revanced/patches/scbeasy/detection/debugging/RemoveDebuggingDetectionPatch.kt b/src/main/kotlin/app/revanced/patches/scbeasy/detection/debugging/RemoveDebuggingDetectionPatch.kt index 600abb3434..3dab6628fb 100644 --- a/src/main/kotlin/app/revanced/patches/scbeasy/detection/debugging/RemoveDebuggingDetectionPatch.kt +++ b/src/main/kotlin/app/revanced/patches/scbeasy/detection/debugging/RemoveDebuggingDetectionPatch.kt @@ -10,11 +10,13 @@ import app.revanced.patches.scbeasy.detection.debugging.fingerprints.DebuggingDe @Patch( use = false, - name = "Remove debugging detection", description = "Removes the USB and wireless debugging checks.", compatiblePackages = [CompatiblePackage("com.scb.phone")] ) @Suppress("unused") +@Deprecated("This patch no longer work and will be removed in the future " + + "due to the complexity of the application.\n" + + "See https://github.com/ReVanced/revanced-patches/issues/3517 for more details.") object RemoveDebuggingDetectionPatch : BytecodePatch( setOf(DebuggingDetectionFingerprint) ) {