Reputation: 125
in groovy build script,
dependencies { implementation project(':nameless-core') }
we can add another modules at same project to dependencies. is kotlin dsl build script can?
Upvotes: 2
Views: 2941
ah!
dependencies { implementation(project(":nameless-core")) }
Upvotes: 5