fix(enable-android-debugging): make option debuggable false by default
This commit is contained in:
parent
420f392dcf
commit
e5c81de301
1 changed files with 1 additions and 1 deletions
|
|
@ -33,7 +33,7 @@ class EnableAndroidDebuggingPatch : ResourcePatch {
|
||||||
var debuggable: Boolean? by option(
|
var debuggable: Boolean? by option(
|
||||||
PatchOption.BooleanOption(
|
PatchOption.BooleanOption(
|
||||||
key = "debuggable",
|
key = "debuggable",
|
||||||
default = true,
|
default = false,
|
||||||
title = "App debugging",
|
title = "App debugging",
|
||||||
description = "Whether to make the app debuggable on Android.",
|
description = "Whether to make the app debuggable on Android.",
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue