I\'ve got BroadcastReceiver class:
public class IntentReceiver extends BroadcastReceiver { final String tag = \"Intent Intercepter\"; @Override
I had the same problem and found out that you have to escape spaces in the extra:
adb shell am broadcast -a com.whereismywifeserver.intent.TEST --es sms_body "test\ from\ adb"
So instead of "test from adb" it should be "test\ from\ adb"