I've been following the guide for creating an android app that listens for a barcode reader here:
I'm trying to debug listening for the barcodescanner.RECVR intent - my phone is connected via USB and is debugging as expected as i can see the device by calling adb devices and can see the log from the phone. But when i try and broadcast the intent using adb, nothing appears to happen:
adb shell am broadcast -a wmsmobileapp.activities.MainActivity -c android.intent.category.DEFAULT -d "some data"
returns:
Broadcasting: Intent { act=wmsmobileapp.activities.MainActivity cat=[android.intent.category.DEFAULT] dat=NOR1-A1-FA-S1-B1 }
Broadcast completed: result=0
I'm pretty new to android development so am pretty lost with trying to emulate broadcasting an intent. Is my command wrong or is there something else I'm missing?