I'm currently using the old feature plugin for creating an Instant App. In the base feature module's AndroidManifest file I have Activity B that listens for intents following the pattern "/pets/dogs/cages"
In my application module's AndroidManifest file I have Activity C that listens for intents following the pattern "pets/..*/cages". I also have Activity B listed for am using "tools:node="replace" so that the filters previously stated in the feature module are ignored.
The reason for this set up is because i dont want to intercept all web links a user clicks on, i only want to do it if they already have the app fully installed.
This setup works well for the old feature plugin but i'm having trouble trying to achieve this same functionality when switching to app bundles and dynamic features.
In the old setup, the application module's manifest had higher priority. However when migrating to new structure i'm suppose to change the feature module to be the new application module and the old application module to a dynamic-feature module.
Any tips?