We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2edceb5 + 26838fe commit 992a550Copy full SHA for 992a550
src/services/NsCliService.ts
@@ -251,7 +251,7 @@ export class AndroidProject extends NSProject {
251
that.emit('TNS.outputMessage', data.toString(), 'log');
252
that.writeToTnsOutputFile(strData);
253
if (!launched) {
254
- if (args.request === "launch" && ((strData.indexOf('# NativeScript Debugger started #') > -1) || strData.indexOf('Successfully synced application') > -1)) {
+ if (args.request === "launch" && strData.indexOf('# NativeScript Debugger started #') > -1) {
255
launched = true;
256
//wait a little before trying to connect, this gives a changes for adb to be able to connect to the debug socket
257
setTimeout(() => {
0 commit comments