Deep Linking not working on Android Standalone

I am making an App with RN and I’m using react-navigation to handle navigation in the app. I’ve managed to make custom uris open the app, but I’m not being able to figure out how to open https urls. Could anyone help me please?

Here is my app.json

{
  "expo": {
    "name": "navigation-test",
    "slug": "navigation-test",
    "privacy": "public",
    "sdkVersion": "32.0.0",
    "platforms": [
      "ios",
      "android"
    ],
    "version": "1.0.0",
    "orientation": "portrait",
    "icon": "./assets/icon.png",
    "splash": {
      "image": "./assets/splash.png",
      "resizeMode": "contain",
      "backgroundColor": "#ffffff"
    },
    "updates": {
      "fallbackToCacheTimeout": 0
    },
    "assetBundlePatterns": [
      "**/*"
    ],
    "ios": {
      "supportsTablet": true,
      "bundleIdentifier": "com.whads.clickclcock"
    },
    "android": {
      "package": "com.whads.clickclcock",
      "intentFilters": [
        {
          "action": "VIEW",
          "data": [
            {
              "scheme": "https",
              "host": "*.click-clock.net",
              "pathPrefix": "/records"
            }
          ],
          "category": [
            "BROWSABLE",
            "DEFAULT"
          ]
        }
      ]
    },
    "scheme": "mychat"
  }
}

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