I've multi-module gradle project. Let's say project parent
has modules module1
and module2
.
I have included both the modules in settings.gradle
in the parent project as well.
When I declare the common dependencies in build.gradle
of parent project, both the project is not compiling but when I add the dependencies in build.gradle
of each module then the modules are compiling successfully.
Any Idea how can I do this.