fix(enable-android-debugging): make option debuggable false by default

This commit is contained in:
oSumAtrIX
2023-04-27 20:31:47 +02:00
parent 2d3da2a579
commit 19e82d97f2

View File

@@ -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.",
)