Skip to content

Commit 477b272

Browse files
FatmeFatme
Fatme
authored and
Fatme
committed
Merge pull request #901 from NativeScript/fatme/fix-getport
Fix tns debug android --get-port command
2 parents ba6d58e + 9af05ac commit 477b272

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/services/android-debug-service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ class AndroidDebugService implements IDebugService {
9595

9696
private printDebugPort(packageName: string): IFuture<void> {
9797
return (() => {
98-
let res = this.device.adb.executeShellCommand(["am", "broadcast", "-a", packageName + "-GetDgbPort"]).wait();
98+
let res = this.device.adb.executeShellCommand(["am", "broadcast", "-a", packageName + "-GetDbgPort"]).wait();
9999
this.$logger.info(res);
100100
}).future<void>()();
101101
}

0 commit comments

Comments
 (0)