I have to read an rfid tag on an rfid reading pda, I install the broadcaster plugin, and I don’t get anything
onRegisterListener() {
try{
if( this.subscription && !this.subscription.closed ) {return;}
const ev = ‘es.movion.intent.message’;
this.L( “register event”, ev);
this.subscription = Broadcaster.addEventListener(ev)
.subscribe( event =>
this.L( “received”, ev, “\n”, JSON.stringify(event)));
}catch(err){
console.log(JSON.stringify(err));
}
}