欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

glide 4.8.0 运行后open app again问题

程序员文章站 2022-05-28 20:42:52
在调用glide接口时,因为最新版本为4.8.0 调用代码如下: repositories { mavenCentral() google() } dependencies { implementation 'com.github.bumptech.glide:glide:4.8.0' annota ......

 glide 4.8.0 运行后open app again问题

glide 4.8.0 运行后open app again问题

在调用glide接口时,因为最新版本为4.8.0

调用代码如下:

repositories {

  mavencentral()

  google()

}

 

dependencies {

  implementation 'com.github.bumptech.glide:glide:4.8.0'

  annotationprocessor 'com.github.bumptech.glide:compiler:4.8.0'

}

运行发现app结果:open app again

 glide 4.8.0 运行后open app again问题

 

后来换成4.0.0版本:

调用代码更改为:

repositories {

  mavencentral()

}

 

dependencies {

  implementation 'com.github.bumptech.glide:glide:4.0.0'

  annotationprocessor 'com.github.bumptech.glide:compiler:4.0.0'

}

发现运行正常:

 glide 4.8.0 运行后open app again问题