I have my assetlinks set up right now like so:
[
{
"relation": ["delegate_permission/common.handle_all_urls"],
"target": {
"namespace": "android_app",
"package_name": "com.myapp.app",
"sha256_cert_fingerprints":
[
"so:me:de:bu:gs:ha",
"so:me:pr:od:sh:aa"
]
}
},
{
"relation": ["delegate_permission/common.handle_all_urls"],
"target": {
"namespace": "android_app",
"package_name": "com.myapp.app.staging",
"sha256_cert_fingerprints":
[
"so:me:de:bu:gs:ha",
"so:me:pr:od:sh:aa"
]
}
}
]
According to the links documentation, this field should support multiple fingerprints, but I haven't been able to find any examples of how to format this. Given that it's just JSON, the way I've formatted above seems like it should work fine, but I'm seeing that link verification is failing when I have multiple fingerprints in that field, while a single seems to work fine.
Am I just missing something very obvious here?