Back to project page android-nfc-reader.
The source code is released under:
MIT License
If you think the Android project android-nfc-reader listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package net.mklbravo.lib.nfcreader.readers; //from w ww.j av a 2 s . c om import android.nfc.Tag; import net.mklbravo.lib.nfcreader.interfaces.TagReader; public abstract class AbstractReader implements TagReader { public Tag androidTag; public byte[] tagId; public AbstractReader(Tag pAndroidTag){ androidTag = pAndroidTag; tagId = androidTag.getId(); } }