Anyone else encountered this message: `app: 'andro...
# android
r
Anyone else encountered this message:
app: 'androidProcessor' dependencies won't be recognized as kapt annotation processors. Please change the configuration name to 'kapt' for these artifacts: 'com.android.databinding:compiler:3.0.0-beta4'.
For some reason with the 3.0.0-beta4 the databinding dependency is added as an annotationProcessor:
Copy code
annotationProcessor - Classpath for the annotation processor for 'main'. (n)
\--- com.android.databinding:compiler:3.0.0-beta4 (n)
Even though I have:
kapt "com.android.databinding:compiler:$android_plugin_version"
How can I exclude it from being added?