For a project include installable, instant, and other modules, I can see there are gradle tasks of :installable:generateGoogleReleaseSources
, :<module_name>:generateReleaseSources
but I only see :instant:dummyGoogleRelease
and there is no :instant:generateGoogleReleseSources
(or any variant of it)
You can see it in action inside Android studio (this one is debug variant):
Executing tasks: [:instant:dummyDebug, :main:generateDebugSources, :detail:generateDebugSources, :base:generateDebugSources, :installed:generateDebugSources]
Is that supported? Cause I want to generate BuildConfig for instant app. The app module and the base module has it, instant module doesn't has it.
I tried put java sources, manifest, etc and same result.
(My android project has installable, instant, core (base feature), and many other library modules, as suggested by Google.)