List of usage examples for android.nfc NdefRecord toByteArray
@Deprecated public byte[] toByteArray()
This method is deprecated, use NdefMessage#toByteArray instead.
From source file:Main.java
private static boolean areRecordsEqual(NdefRecord record, NdefRecord otherRecord) { return Arrays.equals(record.toByteArray(), otherRecord.toByteArray()); }