时间:2019年7月29日21:53:28
解决办法:
把 dependencies 中的

dependencies {(http://www.amjmh.com/v/)
implementation 'com.github.bumptech.glide:glide:4.9.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0'
}
1
2
3
4
替换为

apply plugin: 'kotlin-kapt'
dependencies {
implementation 'com.github.bumptech.glide:glide:4.9.0'
kapt 'com.github.bumptech.glide:compiler:4.9.0'
}
————————————————

相关文章:

  • 2021-04-09
  • 2022-12-23
  • 2021-12-19
  • 2022-01-18
  • 2022-02-09
  • 2021-04-15
  • 2022-12-23
猜你喜欢
  • 2021-08-24
  • 2022-12-23
  • 2022-12-23
  • 2021-04-29
  • 2022-12-23
  • 2021-11-21
  • 2021-09-20
相关资源
相似解决方案