当前位置: 首页 > 知识库问答 >
问题:

错误:Android-apt插件与Android Gradle插件不兼容。请改用“注释处理器”配置

龙佐
2023-03-14
apply plugin: 'com.android.application'
apply plugin: 'android-apt'
android {
    compileSdkVersion 26
    buildToolsVersion '26.0.2'
    defaultConfig {
        applicationId "com.example.sony.welcomefilemanager"
        minSdkVersion 16
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        vectorDrawables.useSupportLibrary = true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation 'com.android.support:support-v4:26.1.0'
    compile fileTree(dir: 'libs', include: ['*.jar'])
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:appcompat-v7:26.+'
    compile 'com.android.support:design:26.+'
    compile 'com.android.support:support-vector-drawable:26.+'
    compile 'com.android.support:design:26+'
    compile 'com.android.support:recyclerview-v7:26+'
    compile 'com.android.support:cardview-v7:26.+'
    compile 'com.jakewharton:butterknife:7.0.1'
    apt 'com.jakewharton:butterknife-compiler:8.0.1'
    testCompile 'junit:junit:4.12'
}

下面的build.gradle(项目)文件

buildscript {
    repositories {
        jcenter()
        google()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.0'
        classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
        google()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

共有1个答案

墨承泽
2023-03-14

android-apt插件已被弃用。

从Android Gradle插件2.2版开始,以前由android-apt提供的所有功能现在都可以在Android插件中使用。

  • 确保您使用的是Android Gradle 2.2插件或更新版本。
  • 从构建脚本中删除android-apt插件
  • 将所有(如果有)aptAndroidTestaptTestapt依赖项更改为它们的新格式
 类似资料:
  • 应用插件:'realmandroid' android{编译SDK版本24 buildToolsVersion'26.0.2' } /*重要提示:*更新依赖项时要小心,不同版本的库可能会导致错误/依赖项{编译文件树(目录:'libs',include:['.jar']))testCompile'junit:junit:4.12'//google library compile'com.androi

  • 我收到此错误: android-apt插件与Android Gradle插件不兼容。请改用“annotationProcessor”配置 因为我用这个不工作: Android Studio警告:使用不兼容的插件进行注释处理 升级到Android Studio 2.3后android-apt的不兼容插件

  • 根据这个答案和这个答案,我已经在应用程序gradle中进行了更改,但它仍然显示我在构建应用程序时跟踪错误。 我在这里错过了什么? 这是我的应用程序Gradle 我使用的是Android Studio3.0,渐变版本是3.0

  • 问题内容: 因此,我制作了一个可穿戴应用程序,可以在其中使用MessageListenerService通过屏幕上的按钮来控制自动驾驶汽车。在尝试构建项目后,我遇到了一些问题,它要求我从已经安装的SDK中安装“ Android支持存储库”。我在SO(链接)上发现了另一个类似的问题, 该问题具有某种解决方案,但现在它说 “错误:已应用Java插件,但与Android插件不兼容” 这是我的可穿戴模块中

  • 从2.2升级到2.3后,我看到了此警告 当我试图编译这个项目时,我看到了这个编译错误 如何解决这个问题,而不降级到以前的gradle版本?是否有任何更新的android-apt可以解决这个问题?

  • 无法理解如何配置build.gradle以便在没有任何JPA/JDO/Mongo的情况下使用querydsl注释处理器。我想使用@QueryEntity注释生成Q类,这样我就可以使用DSL支持编写动态SQL查询,然后将查询转换为纯文本并提供给Spring R2DBC DatabaseClient Executor。 我正在使用Gradle5,Spring Data R2DBC,Spring Boo