I have an app that has a base module :app in which AndroidManifest.xml does not have any activities.
I have another module :main_app in which AndroidManifest.xml has a launcher activity.
Then I have another module :instant_experience in which AndroidManifest.xml has an activity for the instant app. This activity has intent-filter set up to be triggered from a specific host.
When I upload the bundle to the Play Store, I am getting the following error:
You must provide an entry point for your Instant App APKs. It can be either a URL, or an Activity with ACTION_MAIN and CATEGORY_LAUNCHER.
FYI, the dependency graph is :main_app and :instant_experience are depending on :app module.
Please help!