I am trying to enhance my .pkpass files with NFC functionality. I know that for public use a certificate is required from Apple to allow the readers to access my iPhone NFC but I have seen this setting in Developer Options: NFC Pass Key Optional and I take it as that for developer testing I can in fact have an NFC pass without a signed key (?)
If this is so, how I do that? I ve added the following in my pass.json:
"storeCard": {
"primaryFields": [
{
"key": "XXX",
"label": "XXX",
"value": "---"
}
],
"secondaryFields": [
{
"key": "XXX",
"label": "XXX",
"value": "---"
}
],
"nfc" : {
"message" : "MY_NFC_MESSAGE"
}
}
But when I try to read the pass with an Android NFC reader I get no result. The same Android app succeeds to read my Apple Wallet credit cards so I guess I am not implementing it right... Do I need to use the signpass script in any special way?