注释处理器现在必须明确地去除

时间:2018-03-03 04:13:33

标签: android annotations android-glide

我在我的Android中添加了以下库之后我收到了错误。

错误:

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'
}

5 个答案:

答案 0 :(得分:1)

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

只是使用它的依赖...

项目中的

- > build.gradle文件:

添加此代码。

repositories {
  mavenCentral()
  google()
}

在App build.gradle文件中: 添加此代码。

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

希望它会对你有所帮助。

答案 1 :(得分:1)

在尝试使用滑行时遇到了这个问题。 如果您使用的是Kotlin。您应该添加此

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

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

答案 2 :(得分:0)

只需阅读设置说明并遵循它们(如果您的Gradle版本允许,请使用implementation代替compile): http://bumptech.github.io/glide/doc/download-setup.html#gradle

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

答案 3 :(得分:-1)

图书馆存在某种问题所以我决定Picasso  反对它。

答案 4 :(得分:-1)

在App build.gradle文件中:添加以下代码:

android {
    ...
    defaultConfig {
       ...
       javaCompileOptions { annotationProcessorOptions { includeCompileClasspath = true } }
    }
}