I have my base module(Base), a dynamic feature module(A) and a common module(Common) that is not a a dynamic feature, its a library. When I add Common as a dependency of A, I'm able to use classes from it but my build fails because it can't find the resources (error: cannot find symbol R.drawable.myimage) from the Common library.
dependencies {
implementation project(":Common")
implementation project(':Base')
}
Is this a dynamic feature constraint or is something causing this?