We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13bc669 commit 26838feCopy full SHA for 26838fe
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