Hi! When using compose in a multi-module project ...
# compose
d
Hi! When using compose in a multi-module project do I have to specify
composeOptions
+
useIR = true
+
buildFeatures.compose = true
for each module or is it enough to specify all (or some) of these in the
:app
module? Setup instructions have only app module example (which unfortunately is true for many examples in docs: they assume a single app-module structure)
b
Any module that uses compose will need that feature enabled.
🙏 1