Reputation: 264
Do we still need SETUP NfcAdapter, PendingIntent and enableForegroundDispatch in every Activity?
Upvotes: 0
Views: 530
Reputation: 10228
Yes. A simple way to do it is to define a BaseNfcActivity class, where you set this up. For all Activities that need it you can then extend BaseNfcActvity (instead of Activity).
Upvotes: 2