From e717e260fd0449a97929c3c82da577362586c5e1 Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Thu, 27 Apr 2023 20:31:47 +0200 Subject: [PATCH] fix(enable-android-debugging): make option `debuggable` false by default --- .../all/misc/debugging/patch/EnableAndroidDebuggingPatch.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/app/revanced/patches/all/misc/debugging/patch/EnableAndroidDebuggingPatch.kt b/src/main/kotlin/app/revanced/patches/all/misc/debugging/patch/EnableAndroidDebuggingPatch.kt index 4143f1c2d..88199d036 100644 --- a/src/main/kotlin/app/revanced/patches/all/misc/debugging/patch/EnableAndroidDebuggingPatch.kt +++ b/src/main/kotlin/app/revanced/patches/all/misc/debugging/patch/EnableAndroidDebuggingPatch.kt @@ -33,7 +33,7 @@ class EnableAndroidDebuggingPatch : ResourcePatch { var debuggable: Boolean? by option( PatchOption.BooleanOption( key = "debuggable", - default = true, + default = false, title = "App debugging", description = "Whether to make the app debuggable on Android.", )