“intentFilters” config doesn't work on EAS build

We have a config in app.config.js

expo{
  android {
      intentFilters: [
        {
          action: 'VIEW',
          data: [
            {
              scheme: 'wc',
              host: '*.mydomain.com',
            },
          ],
          category: ['BROWSABLE', 'DEFAULT'],
        },
      ],
  }
}

this config is attend to open a deeplink protocol formatted as “wc:xxxx”

but after I build my development build apk by eas-build, there is no response on my android phone.

my phone is Samsung S8+, the Android system version is not so fresh.

-We are using EAS build by command “eas build --profile=development -p android --non-interactive” and managed flow
-We are using eas-cli@2.6.0, and the node version is 16.15.0

Got this problem fixed

Just remove the “host” config then every website can call up our app now

1 Like