Skip to content

Commit 913795c

Browse files
Merge pull request #1640 from NativeScript/slavchev/fix-debugger-attach
fix string template
2 parents 7d7a1e6 + 77bfbba commit 913795c

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
@@ -154,7 +154,7 @@ class AndroidDebugService implements IDebugService {
154154

155155
private attachDebugger(deviceId: string, packageName: string): IFuture<void> {
156156
return (() => {
157-
let startDebuggerCommand = ["am", "broadcast", "-a", '\"${packageName}-debug\"', "--ez", "enable", "true"];
157+
let startDebuggerCommand = ["am", "broadcast", "-a", `\"${packageName}-debug\"`, "--ez", "enable", "true"];
158158
this.device.adb.executeShellCommand(startDebuggerCommand).wait();
159159

160160
if (this.$options.client) {

0 commit comments

Comments
 (0)