Setting Explict Annotation Processor

AndroidMavenAndroid StudioGradleAnnotation Processor

Android Problem Overview


I am attempting to add a maven repository to my Android Studio project. When I do a Gradle project sync everything is fine. However, whenever I try to build my apk, I get this 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.
 - classindex-3.3.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.

The link included (https://developer.android.com/r/tools/annotation-processor-error-message.html) in the error 404s so its of no help.

I have enabled annotation processing in the android studio settings, and added includeCompileClasspath = true to my Annotation Processor options. I have also tried adding classindex, classindex-3.3 and classindex-3.3.jar to Processor FQ Name, but that did not help either.

these are the lines I have added to the default build.gradle under dependecies:

dependencies {
    ...
    compile group: 'com.skadistats', name: 'clarity', version:'2.1.1'
    compile group: 'org.atteo.classindex', name: 'classindex', version:'3.3'
}

Originally I just had the "clarity" one added, because that is the one I care about, but I added the "classindex" entry in the hopes that it would fix it. Removing "clarity" and keeping "classindex" gives me the exact same error.

I'm not all too familiar with gradle/maven so any help would be appreciated.

Android Solutions


Solution 1 - Android

To fix the error, simply change the configuration of those dependencies to use annotationProcessor. If a dependency includes components that also need to be on the compile classpath, declare that dependency a second time and use the compile dependency configuration.

For example:

annotationProcessor 'com.jakewharton:butterknife:7.0.1'
compile 'com.jakewharton:butterknife:7.0.1'

This link describes it in detail: https://developer.android.com/studio/preview/features/new-android-plugin-migration.html#annotationProcessor_config

Relevant snippet included for completeness.

> Use the annotation processor dependency configuration > > In previous versions of the Android plugin for Gradle, dependencies on > the compile classpath were automatically added to the processor > classpath. That is, you could add an annotation processor to the > compile classpath and it would work as expected. However, this causes > a significant impact to performance by adding a large number of > unnecessary dependencies to the processor. > > When using the new plugin, annotation processors must be added to the > processor classpath using the annotationProcessor dependency > configuration, as shown below: > > dependencies { > ... > annotationProcessor 'com.google.dagger:dagger-compiler:' } > > The plugin assumes a dependency is an annotation processor if its JAR > file contains the following file: META- > INF/services/javax.annotation.processing.Processor. If the plugin > detects annotation processors on the compile classpath, your build > fails and you get an error message that lists each annotation > processor on the compile classpath. To fix the error, simply change > the configuration of those dependencies to use annotationProcessor. If > a dependency includes components that also need to be on the compile > classpath, declare that dependency a second time and use the compile > dependency configuration.

Solution 2 - Android

I was with a similar error. I follow the instructions on the Google link and it works.

try to add the follow instructions to your app gradle file:

defaultConfig {
    applicationId "com.yourdomain.yourapp"
    minSdkVersion 17
    targetSdkVersion 25
    versionCode 1
    versionName "1.0"

    javaCompileOptions {
        annotationProcessorOptions {
            includeCompileClasspath = false
        }
    }
}

Attention to -> includeCompileClasspath false

Solution 3 - Android

Add this code to your gradle app

defaultConfig{
    javaCompileOptions {
        annotationProcessorOptions {
            includeCompileClasspath true
        }
    }
}

I found the solution here https://github.com/JakeWharton/butterknife/issues/908

Solution 4 - Android

Simply update your butter knife with Annotation processor

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

i hope it's help you

Solution 5 - Android

Add this in defaultConfig

android.defaultConfig.javaCompileOptions.annotationProcessorOptions.includeCompileClasspath = true

Solution 6 - Android

In the build.gradle(module app)

  1. apply the plugin:

     apply plugin: 'com.jakewharton.butterknife'
    
  2. Add the following lines in the dependencies section:

     annotationProcessor 'com.jakewharton:butterknife-compiler:8.7.0'
     implementation 'com.jakewharton:butterknife:8.7.0'
    

in the build.gradle(Project:projectName), add the classPath in the dependencies like this :

    classpath 'com.jakewharton:butterknife-gradle-plugin:8.4.0'

It will fix this issue. In case if not then add maven:

 maven {
 url 'https://maven.google.com'
 }

Solution 7 - Android

If you have dependencies on the compile classpath that include annotation processors you don't need, you can disable the error check by adding the following to your build.gradle file. Keep in mind, the annotation processors you add to the compile classpath are still not added to the processor classpath.

 android {
    ...
    defaultConfig {
        ...
        javaCompileOptions {
            annotationProcessorOptions {
                includeCompileClasspath false
            }
        }
    }
}

If you are experiencing issues migrating to the new dependency resolution strategy, you can restore behavior to that of Android plugin 2.3.0 by setting includeCompileClasspath true. However, restoring behavior to version 2.3.0 is not recommended, and the option to do so will be removed in a future update.

See here https://developer.android.com/r/tools/annotation-processor-error-message.html for more details

Solution 8 - Android

If nothing works from above answers add following step as well, specially for new update of Android Studio 3.0.1:

Android Studio 3.0.1:

Add this to your app.gradle file in dependencies:

classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'

Solution 9 - Android

In previous versions of the plugin, dependencies on the compile classpath were automatically added to the processor classpath. That is, you could add an annotation processor to the compile classpath and it would work as expected. However, this causes a significant impact to performance by adding a large number of unnecessary dependencies to the processor.

When using the Android plugin 3.0.0, you must add annotation processors to the processor classpath using the annotationProcessor dependency configuration, as shown below:

dependencies {
    ...
    annotationProcessor 'com.google.dagger:dagger-compiler:<version-number>'
    implementation 'com.google.dagger:dagger-compiler:<version-number>'
}

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionwmriceView Question on Stackoverflow
Solution 1 - AndroidSnowmanView Answer on Stackoverflow
Solution 2 - AndroidluizMelloView Answer on Stackoverflow
Solution 3 - AndroidAmirouche ZeggaghView Answer on Stackoverflow
Solution 4 - AndroidMohamed HussienView Answer on Stackoverflow
Solution 5 - AndroidTushar AhmedView Answer on Stackoverflow
Solution 6 - AndroidmeyasirView Answer on Stackoverflow
Solution 7 - AndroidMohsin BagwanView Answer on Stackoverflow
Solution 8 - AndroidShahid AslamView Answer on Stackoverflow
Solution 9 - AndroidScottView Answer on Stackoverflow