tomorrowkey/adb-peco

Quote marks get removed.

ytRino opened this issue · 5 comments

i found adbp removes quote marks.
ex:

$ adbp shell am start -n you.app/your.app.TargetActivity --es "test" "Can you see me?"

adb -s 192.168.56.101:5555 shell am start -n you.app/your.app.TargetActivity --es test Can you see me?

This command brings you only "Can" with test extra key.
Of course, with quotes,

adb -s 192.168.56.101:5555 shell am start -n you.app/your.app.TargetActivity --es "test" "Can you see me?"

will let you get "Can you see me?" correctly 😃 .
i think that is unwanted behavior. (i don't know this is environment dependent behavior or not. sorry)

Thank you for reporting.
This issue will be solved ver 2.0 (Implemented by ruby version).

@ytRino v2.0 has been released.
Please try this version to confirm the issue solved then close the issue.

If you face the same issue, please reopen the issue.

@tomorrowkey Oops. Sorry I didn't noticed. And it seems working fine. thx!