Not sure whether to ask this here or in <#C19FD968...
# kapt
e
Not sure whether to ask this here or in #gradle but if I have a project with multiple modules that depend on one
common
module, can I get away with defining
Copy code
dependencies {
  kapt 'com.google.dagger:dagger-compiler:2.14.1'
  api 'com.google.dagger:dagger:2.14.1'
}
in the
common
module and have it appear transitively in the others?