I’m writing not so complicated application but I have a big problem;)
In my application are some activities first, login page than, nfc tag reader and than, some menu. My question is how to catch in my second activity that intent with discoverd tag with out restarting activity? What to use
Take a good look at the foreground dispatch system capability as described on the NfcAdapter page (enableForegroundDispatch()). Your activity can call a method to basically intercept a tag intent that you’re interested in; your activity gets priority over all other activities. You’ll get the tag delivered to you in the onNewIntent() callback of your existing activity.