-
Notifications
You must be signed in to change notification settings - Fork 14
Open
Description
If I type this:
> adb shell am startservice --user 0 -n com.android.shellms/.sendSMS -e contact +66..66 -e msg "word1 word2"
I will receive an SMS with only "word1" instead of "word1 word2". I have to protect spaces to get "word1 word2" with a backslash:
> adb shell am startservice --user 0 -n com.android.shellms/.sendSMS -e contact +66..66 -e msg "word1\ word2"