- glide版本需要升级
implementation 'com.github.bumptech.glide:glide:4.13.2'
kapt 'com.github.bumptech.glide:compiler:4.13.2'
如果有远程使用了glide,则需要修改为同同一版本
2.butterknife升级(如果有冲突可以使用exclude,没有可以去掉)
implementation ('com.jakewharton:butterknife:10.2.3'){
exclude group: 'com.jakewharton:butterknife',module:'com.jakewharton:butterknife'
}
kapt 'com.jakewharton:butterknife-compiler:10.2.3'