File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 2424import android .nfc .tech .NdefFormatable ;
2525import android .nfc .tech .NfcA ;
2626import android .nfc .tech .NfcB ;
27+ import android .nfc .tech .NfcBarcode ;
2728import android .nfc .tech .NfcF ;
2829import android .nfc .tech .NfcV ;
2930import android .nfc .tech .TagTechnology ;
@@ -184,6 +185,9 @@ private String[] generateTechStringList(int[] techList) {
184185 case TagTechnology .NFC_V :
185186 strings [i ] = NfcV .class .getName ();
186187 break ;
188+ case TagTechnology .NFC_BARCODE :
189+ strings [i ] = NfcBarcode .class .getName ();
190+ break ;
187191 default :
188192 throw new IllegalArgumentException ("Unknown tech type " + techList [i ]);
189193 }
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ public NfcBarcode(Tag tag) throws RemoteException {
7373 /**
7474 * Returns the NFC Barcode tag type.
7575 *
76- * <p>Currently only one of {@link #TYPE_KOVIO} or {@link TYPE_UNKNOWN}.
76+ * <p>Currently only one of {@link #TYPE_KOVIO} or {@link # TYPE_UNKNOWN}.
7777 *
7878 * <p>Does not cause any RF activity and does not block.
7979 *
You can’t perform that action at this time.
0 commit comments