简单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'
答案 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'