There are multiple manifests generated when we build an android project. Here is the screenshot of:
Build Directory of my application
Here if see, we can observe 3 directories, i.e.
bundle_manifest
instant_app_manifest
merged_manifests
Now I observed that when build Android App Bundle, it uses bundle_manifest. In the case of APK, it uses merged_manifests. I have a code that I am injecting in my manifest through a task in build. Gradle file. Now I can use manifestOutputDirectory to get manifest directory path(i.e. merged_manifests). But I am not able to find a similar Gradle task to locate Manifest present in bundle_manifest directory.
Can someone help me with how to get a path for bundle_manifest directory?