我已成功将glide 4.8.0库添加到我的android studio项目中。 但是,当我检查gradle脱机工作并运行项目时,我遇到此错误:
“没有com.github.bumptech.glide:compiler:4.8.0的缓存版本 可用于离线模式”。 禁用Gradle“离线模式”并同步项目
我希望gradle保持离线工作模式。 我将滑行库添加到了我的项目中,就像在build.gradle(应用程序级别)中的波纹管一样:
implementation 'com.github.bumptech.glide:glide:4.8.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.8.0'
,build.gradle的项目级别为:
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.4'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
mavenCentral()
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
答案 0 :(得分:1)
您是否尝试过禁用离线模式然后重新构建,在构建完成之后,您再次启用了离线模式。