Expo deep linking with https not working on standalone app

Hi,according to the docs adding and intentfilter object to the android section should be enough but after building and installing my app, deep linking without the custom scheme does not work.

  "intentFilters": [
        {
          "action": "VIEW",
          "autoVerify": true,
          "data":[
  {
            "scheme": "https",
            "host": "*.apply.creditwallet.ng"
          }
],
          "category": [
            "BROWSABLE",
            "DEFAULT"
          ]
        }
      ]

Please note that I have removed the *. prefix and changed the data array to an object but still no difference.

Please help

2 Likes