How to test deep linking in development?

I would like to know if it’s possible to test deep links during development using expo client.
I’ve set up my app.json following the guide at:
https://docs.expo.io/versions/latest/workflow/linking/#deep-links-on-android
… and I created a dynamic link using firebase: https://examplemyapp.page.link/bCK1

However, When I open it on my phone, it launches expo client but doesn’t open my app :frowning:

Do I have to build a standalone version to test this?

"android": {
      "intentFilters": [
        {
          "action": "VIEW",
          "data": [
            {
              "scheme": "http",
              "host": "examplemyapp.page.link"
            },
            {
              "scheme": "https",
              "host": "examplemyapp.page.link"
            }
          ],
          "category": [
            "BROWSABLE",
            "DEFAULT"
          ],
          "autoVerify": true
        }
      ]
    }
1 Like

Hi there, I am wondering the same, did you get an answer ?