I have a modular project which contains a base module (base) and two others modules (A & B) which depends on base. It works.
Now, I want to add a new module C which depends on B and base.
So I create a dynamic feature module C and add this in its build.gradle :
implementation project(':base')
implementation project(':B')
But C can't access B resources. For example, if I put some dimensions in the dimens.xml file of B, C can't access these dimensions. I have a "Android resource linking failed" error.
Do I need to add more code than the "implementation project" in order to make this works ?