From c15cd3742bdecb317fac2c6a9096ef2a273f892c Mon Sep 17 00:00:00 2001 From: Zac West <74188+zacwest@users.noreply.github.com> Date: Sat, 1 Aug 2020 20:17:31 -0700 Subject: [PATCH] [iOS] Add new team ID to apple-app-site-association (#14136) * Add new team ID to apple-app-site-association This adds the new team ID (`QMQYCKL255`) and potentially `/nfc/*` for home-assistant/android#689 related unified path handling, which since it requires an app change will only apply to the new team. * Add to old team ID as well --- source/.well-known/apple-app-site-association | 30 +++++++++++++++++-- 1 file changed, 27 insertions(+), 3 deletions(-) diff --git a/source/.well-known/apple-app-site-association b/source/.well-known/apple-app-site-association index 0ae5d0cf17a..4f12d368fb6 100644 --- a/source/.well-known/apple-app-site-association +++ b/source/.well-known/apple-app-site-association @@ -5,19 +5,43 @@ { "appID": "UTQFCBPQRF.io.robbie.HomeAssistant.dev", "paths": [ - "/ios/*" + "/ios/*", + "/nfc/*" ] }, { "appID": "UTQFCBPQRF.io.robbie.HomeAssistant.beta", "paths": [ - "/ios/*" + "/ios/*", + "/nfc/*" ] }, { "appID": "UTQFCBPQRF.io.robbie.HomeAssistant", "paths": [ - "/ios/*" + "/ios/*", + "/nfc/*" + ] + }, + { + "appID": "QMQYCKL255.io.robbie.HomeAssistant.dev", + "paths": [ + "/ios/*", + "/nfc/*" + ] + }, + { + "appID": "QMQYCKL255.io.robbie.HomeAssistant.beta", + "paths": [ + "/ios/*", + "/nfc/*" + ] + }, + { + "appID": "QMQYCKL255.io.robbie.HomeAssistant", + "paths": [ + "/ios/*", + "/nfc/*" ] } ]