We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0470131 commit f923abeCopy full SHA for f923abe
src/nativescript/nativescript.ts
@@ -94,6 +94,7 @@ export class IosProject extends NSProject {
94
.appendParam(this.platform())
95
.appendParamIf("--emulator", args.emulator)
96
.appendParamIf("--start", args.request === "attach")
97
+ .appendParamIf("--debug-brk", args.request === "launch")
98
.appendParam("--no-client")
99
.appendParam(args.tnsArgs)
100
.build();
@@ -173,6 +174,7 @@ export class AndroidProject extends NSProject {
173
174
.appendParam("debug")
175
176
177
+ .appendParam("--debug-brk")
178
179
180
0 commit comments