I’m starting to modularize my app but I’m having s...
# android-architecture
m
I’m starting to modularize my app but I’m having some troubles: I have an app module, a data (with the repository for example) and as feature modules: account and data (it’s an example of a banking app). I guess the app module doesn’t need to see any module but all of the rest need to see the app module, by writing in each gradle file
implementation project(":app")
right?