Android Studio 3.0警告: Using incompatible plugins for the annotation processing

标签 android android-studio gradle warnings

将 Android Studio 更新到 3.0 版本后,我收到警告:

Error:android-apt plugin is incompatible with the Android Gradle plugin.  Please use 'annotationProcessor' configuration instead.

我尝试重写我的 gradle 源代码,但仍然有警告。 这是来源

buildscript {
repositories {
    google()
    jcenter()
}
dependencies {
    classpath 'com.android.tools.build:gradle:3.0.0'
    classpath 'io.realm:realm-gradle-plugin:0.89.+'
}
}
allprojects {
repositories {
    google()
    jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}




apply plugin: 'com.android.application'
android {
compileSdkVersion 26
defaultConfig {
    applicationId "com.syncapp"
    minSdkVersion 21
    targetSdkVersion 26
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}

 buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
}

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation 'junit:junit:4.11'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
implementation 'com.android.support:support-v4:27.0.1'
implementation 'com.android.support:appcompat-v7:27.0.1'
implementation 'com.android.support:design:27.0.1'
compile 'org.greenrobot:eventbus:3.1.1'
compile 'com.google.code.gson:gson:2.6.2'
compile 'com.squareup.retrofit2:retrofit:2.1.0'
compile 'com.squareup.retrofit2:converter-gson:2.1.0'

compile 'com.squareup.okhttp:okhttp:2.7.5'
compile 'com.squareup.okhttp:mockwebserver:2.7.5'

compile 'com.jakewharton:butterknife:8.8.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'

compile 'com.google.dagger:dagger:2.4'
annotationProcessor 'com.google.dagger:dagger-compiler:2.4'


}
apply plugin: 'realm-android'

如您所见,在我的项目中我使用了 butterknife、dagger、okhttp、retrofit2 和 eventbus 支持库

有什么解决办法吗?我无法运行我的应用程序 谢谢

最佳答案

build.gradle 文件中删除 apt 插件。无论您在哪个依赖项中使用 apt,都将其替换为 annotationProcessor。此外,还将您的 realm 依赖项版本更新为 4.1.1

关于Android Studio 3.0警告: Using incompatible plugins for the annotation processing,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47329164/

相关文章:

android - Android Studio Android SDK 上未显示 Google 存储库

android - Android INSTALL_FAILED_NO_MATCHING_ABIS

java - 使用 Gradle OSGI 插件扫描蓝图 XML 文件

javascript - 在AVD(android studio)中运行的 native android浏览器中调试网站

android - 在 edittext 的开头追加文本

git - Android studio git 使用私钥

gradle - Gradle无法将工件发布到网络/共享驱动器

java - 使用 appium 的一个应用程序的 Cpu 内存使用情况

java - 如何在自定义通知中引用 View

Android Studio - 应用程序安装失败