web-dev-qa-db-ja.com

エラーアノテーションプロセッサは今すぐ明示的に宣言する必要があります

突然、アプリの実行中にエラーが発生しました。私はこの質問がすでにここで尋ねられたことを知っています: 注釈プロセッサは今明示的に宣言されなければなりません

しかし、解決策は問題に答えません:(

これは私のbuild.gradleです

apply plugin: 'com.Android.application'
apply plugin: 'kotlin-Android'

Android {
    compileSdkVersion 26
    buildToolsVersion '27.0.0'
    aaptOptions {
        cruncherEnabled = true
    }
    defaultConfig {
        applicationId "com.freelance.crdzbird_dev.clarobadge"
        minSdkVersion 19
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "Android.support.test.runner.AndroidJUnitRunner"
        renderscriptTargetApi 22
        renderscriptSupportModeEnabled true
    }
    buildTypes {
        release {
            minifyEnabled true
            shrinkResources true
            proguardFiles getDefaultProguardFile('proguard-Android.txt'), 'proguard-rules.pro'
        }
    }
    packagingOptions {
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/NOTICE'
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    androidTestCompile('com.Android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.Android.support', module: 'support-annotations'
    })
    compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
    compile 'com.Android.support:appcompat-v7:26.+'     
    compile 'com.Android.support.constraint:constraint-layout:1.0.2'
    compile 'com.Android.support:design:26.+'
    compile 'com.Android.support:support-v4:26.+'
    compile 'com.nineoldandroids:library:2.4.0'
    compile 'com.github.javiersantos:MaterialStyledDialogs:2.1'
    annotationProcessor 'com.google.auto.value:auto-value:1.1'
    compile 'ai.api:libai:1.4.8'
    compile 'ai.api:sdk:2.0.7@aar'
    compile 'de.greenrobot:eventbus:2.4.0'
    compile 'io.mattcarroll.hover:hover:0.9.8'
    compile 'com.gjiazhe:MultiChoicesCircleButton:1.0'
    compile  "org.Apache.logging.log4j:log4j-core:2.8"
    compile 'com.sackcentury:shinebutton:0.1.9'
    compile 'com.yalantis:contextmenu:1.0.7'
    compile 'com.squareup.retrofit2:retrofit:2.3.0'
    compile 'com.google.code.gson:gson:2.6.2'
    compile 'com.squareup.retrofit2:converter-gson:2.1.0'
    compile 'com.Android.support:recyclerview-v7:26.0.0-alpha1'
    compile 'com.Android.support:cardview-v7:26.0.0-alpha1'
    compile 'com.google.Android.gms:play-services-maps:11.0.4'
    compile 'com.dlazaro66.qrcodereaderview:qrcodereaderview:2.0.2'
    compile 'me.samthompson:bubble-actions:1.3.0'
    compile 'com.google.Android.gms:play-services:11.0.4'
    compile 'com.github.apl-devs:appintro:v4.2.2'
    compile 'com.github.PhilJay:MPAndroidChart:v3.0.2'
    compile 'com.google.firebase:firebase-messaging:10.2.1'
    testCompile 'junit:junit:4.12'
}

apply plugin: 'com.google.gms.google-services'
repositories {
    mavenCentral()

このエラーを解決する方法は誰でも知っています。私は成功せずにグーグルで検索します。

これは受け取るエラーです

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.
    - log4j-core-2.8.jar (org.Apache.logging.log4j:log4j-core:2.8)
  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.
7

そのユーザーのエラーは、このアノテーションプロセッサにauto-value-1.1.jar (com.google.auto.value:auto-value:1.1)がないことを示しており、答えは次のように追加することでした。

_annotationProcessor 'com.google.auto.value:auto-value:1.1'
_

あなたのエラーはlog4j-core-2.8.jar (org.Apache.logging.log4j:log4j-core:2.8)と言っているので、答えはこれを追加することだと思いましたか?

_annotationProcessor 'com.google.auto.value:auto-value:1.1'
_

あなたはそれを逐語的にコピーしました!もちろん、それは機能しません!注釈プロセッサを実際に使用しているものに変更します。


咳咳咳_annotationProcessor 'org.Apache.logging.log4j:log4j-core:2.8'_

7
Michael