diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-06-13 22:12:43 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-06-13 22:12:43 -0500 |
commit | 09b78a46343088a2790dab067bd4fd8384957311 (patch) | |
tree | fec23c27b81ff7b0657fb4f4deff66880254476d /src | |
parent | 926a2d475664fe8b7d4848396d20406a0f68a967 (diff) | |
download | voidsky-09b78a46343088a2790dab067bd4fd8384957311.tar.zst |
Add custom protocol deep links
Diffstat (limited to 'src')
-rw-r--r-- | src/routes/index.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/routes/index.tsx b/src/routes/index.tsx index 2accd6fb2..32398e9ad 100644 --- a/src/routes/index.tsx +++ b/src/routes/index.tsx @@ -25,6 +25,8 @@ const linking: LinkingOptions<RootTabsParamList> = { prefixes: [ 'http://localhost:3000', // local dev 'https://pubsq.pfrazee.com', // test server (universal links only) + 'pubsqapp://', // custom protocol (ios) + 'pubsq://app', // custom protocol (android) ], config: { screens: { |