From 2b069ecd3dce305c02d6d1484a06a29a5a71af1c Mon Sep 17 00:00:00 2001 From: AlvinHV Date: Mon, 17 Mar 2025 18:00:05 +0400 Subject: [PATCH 1/2] fix/apple-app-site-association --- .well-known/apple-app-site-association | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/.well-known/apple-app-site-association b/.well-known/apple-app-site-association index 931a44760..256de1ae6 100644 --- a/.well-known/apple-app-site-association +++ b/.well-known/apple-app-site-association @@ -4,25 +4,35 @@ "details": [ { "appID": "9EWRZ4QP3J.com.stremio.one", + "paths": [ + "/", + "#/player/*", + "#/discover/*", + "#/detail/*", + "#/library/*", + "#/addons", + "#/settings", + "#/search/*" + ], "components": [ { "/": "/", - "#": "/player", + "#": "/player/*", "comment": "Matches deep link for player" }, { "/": "/", - "#": "/discover", + "#": "/discover/*", "comment": "Matches deep link for discover" }, { "/": "/", - "#": "/detail", + "#": "/detail/*", "comment": "Matches deep link for detail" }, { "/": "/", - "#": "/library", + "#": "/library/*", "comment": "Matches deep link for library" }, { @@ -37,7 +47,7 @@ }, { "/": "/", - "#": "/search", + "#": "/search/*", "comment": "Matches deep link for search" } ] From eb9ab7d453e163fe42300390dd278fb75cc6ba5f Mon Sep 17 00:00:00 2001 From: AlvinHV Date: Mon, 17 Mar 2025 18:13:05 +0400 Subject: [PATCH 2/2] fix: correct path for site-app association --- .well-known/apple-app-site-association | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.well-known/apple-app-site-association b/.well-known/apple-app-site-association index 256de1ae6..54b0dd1bf 100644 --- a/.well-known/apple-app-site-association +++ b/.well-known/apple-app-site-association @@ -6,13 +6,13 @@ "appID": "9EWRZ4QP3J.com.stremio.one", "paths": [ "/", - "#/player/*", - "#/discover/*", - "#/detail/*", - "#/library/*", - "#/addons", - "#/settings", - "#/search/*" + "/#/player/*", + "/#/discover/*", + "/#/detail/*", + "/#/library/*", + "/#/addons/*", + "/#/settings", + "/#/search/*" ], "components": [ { @@ -37,7 +37,7 @@ }, { "/": "/", - "#": "/addons", + "#": "/addons/*", "comment": "Matches deep link for addons" }, {