27

在我的应用程序模块的 build.gradle 中,我添加了

dependencies {
kapt('com.android.databinding:compiler:3.1.2')
...
}

但我仍然收到编译器警告

app: 'annotationProcessor' dependencies won't be recognized as kapt annotation processors. Please change the configuration name to 'kapt' for these artifacts: 'com.android.databinding:compiler:3.1.2'.

一切正常,我只是讨厌到处发出警告。

任何帮助深表感谢!

4

2 回答 2

15

在升级到最新的 Android Gradle 构建插件和 Kotlin 之前,我收到了同样的警告。现在他们走了。这是我使用的配置。

项目.gradle

buildscript {
    dependencies {
        classpath "com.android.tools.build:gradle:3.1.3"
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.2.51"
    }
}

模块.gradle

apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'

android {
    ...
    dataBinding {
        enabled = true
    }
}

dependencies {
    // no kapt declaration for databinding here
}

希望能帮助到你。

于 2018-07-16T20:42:45.867 回答
0

在你添加以下内容app build.gradle

kapt "com.android.databinding:compiler:$android_plugin_version"
apply plugin: 'kotlin-kapt' // This one at top where plugin belong to

这会成功的。

$android_plugin_versioncom.android.tools.build:gradlein的版本application build.gradle

另外,将此添加到您的模块中build.gradle

android {
    /// Existing Code
    kapt {
        generateStubs = true
    }
}

我想你不见了apply plugin: 'kotlin-kapt'

于 2018-05-31T15:20:33.743 回答