Skip to content

Commit 34a3dc3

Browse files
committed
add more details ios deep links and add android deep links
1 parent c71d90b commit 34a3dc3

File tree

3 files changed

+32
-5
lines changed

3 files changed

+32
-5
lines changed
Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,27 @@
11
{
22
"applinks": {
3-
"apps": [ ],
43
"details": [
54
{
6-
"appID": "HT7ELV3Q35.com.alecgorge.ios.Listen-to-the-Dead",
7-
"paths": [
8-
"*"
5+
"appIDs": [
6+
"HT7ELV3Q35.com.alecgorge.ios.Listen-to-the-Dead"
7+
],
8+
"components": [
9+
{
10+
"/": "*",
11+
"comment": "Matches all routes"
12+
}
913
]
1014
}
1115
]
16+
},
17+
"activitycontinuation": {
18+
"apps": [
19+
"HT7ELV3Q35.com.alecgorge.ios.Listen-to-the-Dead"
20+
]
21+
},
22+
"webcredentials": {
23+
"apps": [
24+
"HT7ELV3Q35.com.alecgorge.ios.Listen-to-the-Dead"
25+
]
1226
}
13-
}
27+
}

public/.well-known/assetlinks.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[
2+
{
3+
"relation": ["delegate_permission/common.handle_all_urls"],
4+
"target": {
5+
"namespace": "android_app",
6+
"package_name": "net.relisten.android",
7+
"sha256_cert_fingerprints": [
8+
"EB:1D:40:C2:31:D3:91:14:D1:C7:71:23:E6:69:DC:45:A9:59:4D:F2:B0:BE:22:C8:3C:E3:24:B2:9E:6E:56:12"
9+
]
10+
}
11+
}
12+
]

src/app/layout.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export default function RootLayout({ children }: { children: React.ReactNode })
1818
<html lang="en">
1919
<head>
2020
<link rel="icon" href="/favicon.ico" />
21+
<meta name="apple-itunes-app" content="app-id=715886886" />
2122
</head>
2223
<body className={roboto.className}>
2324
<NextTopLoader showSpinner={false} />

0 commit comments

Comments
 (0)