【问题标题】:Cannot specify -processorpath or --processor-path via `CompileOptions.compilerArgs`. Use the `CompileOptions.annotationProcessorPath` property instead无法通过 `CompileOptions.compilerArgs` 指定 -processorpath 或 --processor-path。改用 `CompileOptions.annotationProcessorPath` 属性
【发布时间】:2026-01-13 19:55:01
【问题描述】:

我正在从 GitHub 克隆一个 android 课程项目,并且遇到了一系列错误,我已经设法解决了一些错误,直到我卡在了最后一个,场景如下:

1- 错误:找不到 com.android.support:appcompat-v7:25.1.0。 (已解决)。

2- 错误:模块根文件夹中缺少文件 google-services.json。没有它,Google 服务插件将无法运行。(已解决)

3-错误:无法通过 CompileOptions.compilerArgs 指定 -processorpath 或 --processor-path。请改用CompileOptions.annotationProcessorPath 属性。

这个我修不了Error snip

并且在添加了这个实现之后( 实现'com.google.firebase:firebase-core:17.4.3'),我也得到了那个错误。

  • 错误:此项目使用 AndroidX 依赖项,但未启用“android.useAndroidX”属性。在 gradle.properties 文件中将此属性设置为 true 并重试。 Error snip

【问题讨论】:

    标签: firebase android-studio github gradle


    【解决方案1】:

    我发现该链接可以准确修复问题中提到的错误。

    Cannot specify -processorpath or --processor-path via `CompileOptions.compilerArgs`

    解决方案。

    Delete “apply plugin: ‘android-apt’” line from your app module build.gradle file.
    (Not necessary to work) Delete “classpath ‘com.neenbedankt.gradle.plugins:android-apt:1.2’” from your top-level build.gradle file.
    In “dependencies” section in build.gradle rename
    apt ‘net.simonvt.schematic:schematic-compiler:0.6.3’
    to
    annotationProcessor ‘net.simonvt.schematic:schematic-compiler:0.6.3’
    I’m using newest 26.0.2 buildToolsVersion as well as newest support libraries and everything works like a charm.
    Remember to use newest gradle (4.1-all for now) and gradle plugin (3.0.0 for now). Add google repository to download newest support libraries. Sync and rebuild project. Now when you go to your manifest file, there should be no more red android:name=".provider.generated.SquawkProvider"
    
    My top-level build.gradle:
    
    // Top-level build file where you can add configuration options common to all sub-projects/modules.
    
    buildscript {
    repositories {
    jcenter()
    }
    dependencies {
    classpath ‘com.android.tools.build:gradle:3.0.0’
    
        // Google Services plugin
        classpath 'com.google.gms:google-services:3.1.1'
        // 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
    }
    

    让我知道它是否有效。

    【讨论】: