File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
core/java/android/nfc/tech Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -103,6 +103,8 @@ public final class Ndef extends BasicTagTechnology {
103103 public static final int TYPE_4 = 4 ;
104104 /** @hide */
105105 public static final int TYPE_MIFARE_CLASSIC = 101 ;
106+ /** @hide */
107+ public static final int TYPE_ICODE_SLI = 102 ;
106108
107109 /** @hide */
108110 public static final String UNKNOWN = "android.ndef.unknown" ;
@@ -117,6 +119,11 @@ public final class Ndef extends BasicTagTechnology {
117119 public static final String NFC_FORUM_TYPE_4 = "org.nfcforum.ndef.type4" ;
118120 /** NDEF on MIFARE Classic */
119121 public static final String MIFARE_CLASSIC = "com.nxp.ndef.mifareclassic" ;
122+ /**
123+ * NDEF on iCODE SLI
124+ * @hide
125+ */
126+ public static final String ICODE_SLI = "com.nxp.ndef.icodesli" ;
120127
121128 private final int mMaxNdefSize ;
122129 private final int mCardState ;
@@ -200,6 +207,8 @@ public String getType() {
200207 return NFC_FORUM_TYPE_4 ;
201208 case TYPE_MIFARE_CLASSIC :
202209 return MIFARE_CLASSIC ;
210+ case TYPE_ICODE_SLI :
211+ return ICODE_SLI ;
203212 default :
204213 return UNKNOWN ;
205214 }
You can’t perform that action at this time.
0 commit comments