Replies: 1 comment
-
After some time debugging |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
On android, my use case is to handle
.torrent
files from intents of schemehttps
content
andfile
.In my app.json conf I declared:
After rebuilding, the development app can be selected when opening a .torrent file from a file browser or using
adb shell am start -d "https://webtorrent.io/torrents/tears-of-steel.torrent"
.However, expo-router seems to handle at least
content://
as deep links, so trying to open content://media/external_primary/downloads/xxx results in an unmatched route.As for
https
intents, I have not yet figured out how to catch the passed URL within the app.It seems I can handle the
magnet
links just fine.Did I miss something ?
Should expo-router be more configurable to handle only some intents and not others ?
Beta Was this translation helpful? Give feedback.
All reactions