Quote marks get removed.
ytRino opened this issue · 5 comments
ytRino commented
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)
tomorrowkey commented
Thank you for reporting.
This issue will be solved ver 2.0 (Implemented by ruby version).
tomorrowkey commented
See at e096756
tomorrowkey commented
@ytRino v2.0 has been released.
Please try this version to confirm the issue solved then close the issue.
tomorrowkey commented
If you face the same issue, please reopen the issue.
ytRino commented
@tomorrowkey Oops. Sorry I didn't noticed. And it seems working fine. thx!