gpt4 book ai didi

android - java.lang.NoClassDefFoundError : Failed resolution of: Lcom/bumptech/glide/Glide; 错误

转载 作者:行者123 更新时间:2023-11-29 16:56:48 27 4
gpt4 key购买 nike

简单的 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'

最佳答案

NoClassDefFoundError in Java comes when Java Virtual Machine is not able to find a particular class at runtime which was available at compile time.

如果你使用compiler:4.0.0-RC1 然后添加 mavenCentral() build.gradle 部分。

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


repositories {
mavenCentral()
}

}

或者简单地说,您可以使用稳定版

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

关于android - java.lang.NoClassDefFoundError : Failed resolution of: Lcom/bumptech/glide/Glide; 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44734189/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com