java.lang.NoClassDefFoundError:解析失败:Lcom / bumptech / glide / Glide;

时间:2017-06-24 07:49:40

标签: android android-glide

使用

同步项目后,

简单Glide.with(context).load(url).into(image)无法正常工作

compile 'com.github.bumptech.glide:glide:4.0.0-RC1'
compile 'com.android.support:support-v4:25.3.1'
annotationProcessor 'com.github.bumptech.glide:compiler:4.0.0-RC1'

1 个答案:

答案 0 :(得分:3)

  当Java虚拟机没有时,Java中会出现NoClassDefFoundError   能够在运行时找到特定的类,可用于   编译时间。

如果您使用编译器:4.0.0-RC1 ,请在 mavenCentral() 部分中添加 build.gradle 。< / p>

defaultConfig {
    applicationId "//"
    minSdkVersion //
    targetSdkVersion //


    repositories {
     mavenCentral()
    }

}

或者您只需使用稳定版

compile 'com.github.bumptech.glide:glide:4.6.1'