錯誤:資源的“Atf/LayOutsActhRooGrime'與CONFIG”的重復(fù)值
解決:在加載glide框架的時候沒有忽略已存在的框架,
我原來寫的:
implementation 'com.github.bumptech.glide:glide:4.9.0'
將其改成:
implementation('com.github.bumptech.glide:glide:4.9.0') {
exclude group: "com.android.support"
}
annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0'
即可解決