Re: [web-nfc] Type field of Web NFC author records should be "w3.org:A" or "w3.org:a"? (#308)

See https://github.com/aosp-mirror/platform_frameworks_base/blob/master/core/java/android/nfc/NdefRecord.java#L464

```java

    public static NdefRecord createExternal(String domain, String type, byte[] data) {
        if (domain == null) throw new NullPointerException("domain is null");
        if (type == null) throw new NullPointerException("type is null");

        domain = domain.trim().toLowerCase(Locale.ROOT);
        type = type.trim().toLowerCase(Locale.ROOT);
```

-- 
GitHub Notification of comment by beaufortfrancois
Please view or discuss this issue at https://github.com/w3c/web-nfc/issues/308#issuecomment-525274266 using your GitHub account

Received on Tuesday, 27 August 2019 12:17:04 UTC