Expo Deep Linking not working on android

Please provide the following:

  1. SDK Version: 47
  2. Platforms(Android/iOS/web/all): android 13

I got deep links set up on ios and working, but I am unable to get them working on android in either a standalone development or preview build. Following the deep linking guide I have set in my app.json as follows:

{
  "expo": {
    "android": {
      "intentFilters": [
        {
          "action": "VIEW",
          "data": [
            {
              "scheme": "https",
              "host": "staqpay.com",
              "pathPrefix": "/"
            }
          ],
          "category": ["BROWSABLE", "DEFAULT"]
        }
      ]
    }
  }
}

All links to staqpay.com always open the browser and never open the app. Is there more set up than this that isn’t listed?