在調用glide介面時,因為最新版本為4.8.0 調用代碼如下: repositories { mavenCentral() google() } dependencies { implementation 'com.github.bumptech.glide:glide:4.8.0' annota ...
在調用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
後來換成4.0.0版本:
調用代碼更改為:
repositories {
mavenCentral()
}
dependencies {
implementation 'com.github.bumptech.glide:glide:4.0.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.0.0'
}
發現運行正常: