Having dependency circular reference error with mu...
# gradle
r
Having dependency circular reference error with multi module project which has sub modules with same names inside different folders. When I rename
main
to
mainui
it works
v
Having the same name is ok, but only if the group is different. The identifier for a project is group and name. So if you have projects with same group and name, they are considered the same and only one will be included in the end even if there is no circular dependency
r
I have a project and group
common
inside secondary group
compose
and inside it a module But if I add secondary group
shared
inside
common
group and inside it add module with duplicate name this error occurs
v
If you say you have a group in a group, then you didn't understand what a group is.
Group is a property on project
You can also see it in the output for example of the task
outgoingVariants
113 Views