Does intentFilters work for everybody?

It does not work for me. It throw no error when I compile but at the same time, it does not seem to have any effect. My app.json is like this:

"android": {
      "googleServicesFile": "./google-services.json",
      "package": "com.Koolpeace.Koolpeace",
      "intentFilters": [
        {
          "action": "VIEW",
          "data": {
            "scheme": "https",
            "host": "koolpeace.eu",
            "pathPattern": "(^news/)|(^post/)|(^comment/)|(^channel/)|(^notice/)"
          },
          "category": [
            "BROWSABLE",
            "DEFAULT"
          ]
        }
      ]
    },

I resolved it by following code. But now I am struggling with autoVerify option for app-link. Not just a deep link.

"intentFilters": [
        {
          "action": "VIEW",
          "autoVerify": true,
          "data": [
            {
              "scheme": "https",
              "host": "koolpeace.eu",
              "pathPrefix": "/news"
            },
            {
              "scheme": "https",
              "host": "koolpeace.eu",
              "pathPrefix": "/post"
            },
            {
              "scheme": "https",
              "host": "koolpeace.eu",
              "pathPrefix": "/comment"
            },
            {
              "scheme": "https",
              "host": "koolpeace.eu",
              "pathPrefix": "/channel"
            },
            {
              "scheme": "https",
              "host": "koolpeace.eu",
              "pathPrefix": "/notice"
            }
          ],
          "category": [
            "BROWSABLE",
            "DEFAULT"
          ]
        }
      ]

I solved it with Facebook’s app link. I did not know that Facebook requires meta tags to open apps directly. Found no information about Twitter, though. I do not want to use an app card. I want to use a summary with large image card, but it seems like it does not support a deep link.

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