I've sent intents without extras to my SyncReceiver(BroadcastReceiver) successfully using
adb -s <ip_address> shell am broadcast -a com.istock.ALERT
However when I add extras the OnReceive event of SyncReceiver is never called, an example of sending an intent with extras
adb -s <ip_address> shell am broadcast -a com.istock.ALERT --es title "Alert Title"
I found a post on SO with pretty much the same issue, however when I implement the fix it still doesn't call the OnReceive event of the SyncReceiver
adb -s <ip_address> shell am broadcast -a com.istock.ALERT -n com.istock/.SyncReceiver --es title "Alert Title"
At this point I just don't understand why I can receive intents without extras sent via adb and am unable to receive intents with extras any idea?