- From: François Beaufort via GitHub <sysbot+gh@w3.org>
- Date: Tue, 27 Aug 2019 12:17:02 +0000
- To: public-web-nfc@w3.org
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