If you’re working on a multi-module Gradle project, encountering circular dependencies can be a frustrating roadblock. You may see an error like this: KotlinCircular dependency between the following tasks: :javaModule:compileJava +--- :kotlinModule:compileJava | +--- :javaModule:compileJava (*) | \--- :kotlinModule:compileKotlin | \--- :javaModule:compileJava (*) \--- :kotlinModule:compileKotlin (*) This error occurs when two modules depend on each...
Membership Required
Already a member? Log in here
