This message was deleted.
# community-support
s
This message was deleted.
v
build.gradle is nothing special, and trouble is that I have multiple modules with the given constelation of plugins, but only this
:foo:bar
throws the warning
Copy code
apply plugin: "com.android.library"
apply plugin: "kotlin-android"
apply plugin: "com.google.devtools.ksp"
apply plugin: "com.squareup.anvil"

anvil {
    generateDaggerFactories.set(true)
}

dependencies {
    ...
    implementation deps.moshi.client
    ksp deps.moshi.compiler
    ...
}
e
v
ugghh github search, I was just looking through their issues
thanks!