I have a base module and I'd wanted to create feature one which contains some libs. One of this libs was into the base module and when I moved it to the feature and removed it from base one I got an error:
APT: error: resource style/SDKTheme.Translucent (aka io.app.dev.debug:style/SDKTheme.Translucent) not found.
It works if base and feature modules have this dependency, but in this case I lost a profit of separating.
I found a known issue:
In a dynamic feature module’s manifest, you should not reference resources that don’t exist in the base module. That’s because, when Google Play generates your app’s base APK, it merges manifests for all modules into that of the base APK. So, resource linking breaks if the base APK’s manifest references resources that don’t exist in the base APK.
is this my problem?