coil-kt / coil

Image loading for Android and Compose Multiplatform.
https://coil-kt.github.io/coil/
Apache License 2.0
10.84k stars 665 forks source link

Could not resolve io.coil-kt:coil-bom:2.4.0 for AGP 8.2.0 #2023

Closed venkatn41 closed 10 months ago

venkatn41 commented 10 months ago

Describe the bug Have been getting "Could not resolve io.coil-kt:coil-bom:2.4.0" while trying to upgrade to AGP 8.2.0 Same dependency is working fine for AGP 8.1.2. Seeing the same issue with 2.5.0 as well.

Error Log :

colinrtwhite commented 10 months ago

This is likely as you've declared the BOM as implementation("io.coil-kt:coil-bom:2.4.0"). Updating it to this should fix the issue:

implementation(platform("io.coil-kt:coil-bom:2.4.0"))