Skip to content

Commit 9af05ac

Browse files
Fatme HavaluovaFatme Havaluova
authored andcommitted
Fix tns debug android --get-port command
1 parent 068b7a8 commit 9af05ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/services/android-debug-service.ts

Lines changed: 1 addition & 1 deletion
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)