I am trying to write simple url to the tag, but always get "Unknown Service Type" message. What is wrong in the following code:
NDEFRecordType ndefrtype =
new NDEFRecordType(NDEFRecordType.NFC_FORUM_RTD, "urn:nfc:wkt:Sp");
NDEFRecord urlRecordToWrite = new NDEFRecord(ndefrtype , null, "http://www.name.com".getBytes());
NDEFMessage write_container = new NDEFMessage();
write_container.appendRecord(urlRecordToWrite);

Reply With Quote


