How to open standalone expo app with shared url

My app generates a url with a unique id from a flastlist item. Then when the user shares the url with email for example I want them to be able to click the url and that it opens up in the app. The latter part I have already made and is working properly, but in my standalone android app it won’t open. This is my android part of the app.json:’

“android”: {
“package”: “com.representin.representin”,
“intentFilters”: [
{
“action”: “VIEW”,
“data”: [
{
“scheme”: “http”,
“host”: “*.representin.nl”,
“pathPrefix”: “/app”
}
],
“category”: [“BROWSABLE”, “DEFAULT”]
}
]
},

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.