Hi,
i hope i have start this thread in the right section.
I have start with the theme nfc (near field communication) with this code:
Read serial number of NDEF (NFC) tag - Forum Nokia Wiki
that was simple.
But what i have to do, if i have more than one target to analyze?
For example in than way:
Code:public void targetDetected(TargetProperties[] prop) {
if(prop[0].getUid().equals("9816628c")){
form.append("Option1");
form.append("\\NEXT CHOICE");
if(prop[1].getUid().equals("12e6a1d4")){
form.append("Option2");
}
else{
form.append("FAILTURE2");
}
}
else{
form.append("FAILTURE");
}
}
In this way the second tag, I can't analyze.
Any suggestions please ??
Thx nunu
