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

现在必须显式标记注释处理器

闽焕
2023-03-14

我在我的Android中添加了以下库,然后我得到了错误。

  • https://github.com/bumptech/glide/releases/download/v4.6.1/compiler-4.6.1.jar
  • https://github.com/bumptech/glide/releases/download/v4.6.1/glide-full-4.6.1.jar

错误:

Error:Execution failed for task ':app:javaPreCompileDebug'.
> Annotation processors must be explicitly declared now.  The following dependencies on the compile classpath are found to contain annotation processor.  Please add them to the annotationProcessor configuration.
    - compiler-4.6.1.jar (compiler-4.6.1.jar)   Alternatively, set android.defaultConfig.javaCompileOptions.annotationProcessorOptions.includeCompileClasspath
= true to continue with previous behavior.  Note that this option is deprecated and will be removed in the future.   See https://developer.android.com/r/tools/annotation-processor-error-message.html for more details.

等级:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 26
    defaultConfig {
        applicationId "com.example.usamaakmal.bookswap"
        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:appcompat-v7:26.1.0'
    implementation 'com.android.support.constraint:constraint-layout:1.0.2'
    implementation 'com.android.support:support-v4:26.1.0'
    implementation 'com.android.support:design:26.1.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.1'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
    compile 'com.squareup.retrofit2:retrofit:2.3.0'
    compile 'com.squareup.retrofit2:converter-gson:2.3.0'
    compile 'com.google.code.gson:gson:2.7'
    compile 'com.jaredrummler:material-spinner:1.2.4'
    compile 'com.mikhaellopez:circularimageview:3.0.2'
    implementation 'com.android.support:cardview-v7:26.1.0'
}

共有3个答案

米修平
2023-03-14

只需阅读安装说明并遵循它们(如果您的Gradle版本允许,请使用<code>实现):http://bumptech.github.io/glide/doc/download-setup.html#gradle

还要确保删除libs文件夹中Glide.jar文件的任何本地副本。我有一种感觉https://stackoverflow.com/a/49080598/253468不起作用,因为您仍然使用原始的有问题的方式使用库;一般来说,对于Android,您不必使用libs文件夹,生态系统已经足够成熟,可以使用jcenter/mavenCentral发布的库。

慕才
2023-03-14

我在尝试使用glide时遇到了这种情况。如果你用的是Kotlin。你应该加上这个

dependencies {
  kapt 'com.github.bumptech.glide:compiler:4.9.0'
}

查看此处的说明 http://bumptech.github.io/glide/doc/download-setup.html#gradle

卫华奥
2023-03-14

没有必要使用glide作为jar库。

利用它的依赖性...

在项目中-

添加此代码。

repositories {
  mavenCentral()
  google()
}

应用内构建。gradle文件:添加此代码。

dependencies {
  implementation 'com.github.bumptech.glide:glide:4.6.1'
  annotationProcessor 'com.github.bumptech.glide:compiler:4.6.1'
}

希望对你有帮助。

 类似资料:
  • 我看到了这个问题,但问题是auto-value-1.1.jar不在我的gradle文件中

  • 我正在尝试开发一个Kotlin AnnotationProcessor库,我想不出为什么会出现这个错误: 错误:任务“:app:javaprecompiledebug”执行失败。 >现在必须显式声明批注处理器。发现编译类路径上的以下依赖项包含注释处理器。请将它们添加到annotationProcessor配置中。  · · · -compiler.jar(项目:编译器)  · 或者,设置andro

  • 突然,我在执行应用程序时出错。我知道这里已经有人问过这个问题:现在必须显式声明注释处理器 然而,解决方案并没有解决问题:( 这是我的build.gradle 任何人都知道如何解决这个错误。我在谷歌上搜索没有成功。 这是收到的错误

  • 我把我的Android studio升级到了3.0 我的build.gradle包含依赖项: 如何在Android Studio 3.0中摆脱这个错误?

  • 现在必须显式声明注解处理器。发现编译类路径上的以下依赖项包含注解处理器。请将它们添加到annotationProcess配置中。 realm-android-0.86.0.jar(io.realm:realmandroid:0.86-0) 或者,设置以继续先前的行为。 请注意,此选项已弃用,将来将被删除。有关更多详细信息,请参阅此内容。

  • 下面是我的app.gradle 在我的建筑下面。Gradle