1. 程式人生 > >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

 

 

後來換成4.0.0版本:

呼叫程式碼更改為:

repositories {

  mavenCentral()

}

 

dependencies {

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

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

}

發現執行正常: