diff --git a/base/src/main/java/de/mm20/launcher2/licenses/OpenSourceLicenses.kt b/base/src/main/java/de/mm20/launcher2/licenses/OpenSourceLicenses.kt index eea348c9..24301d06 100644 --- a/base/src/main/java/de/mm20/launcher2/licenses/OpenSourceLicenses.kt +++ b/base/src/main/java/de/mm20/launcher2/licenses/OpenSourceLicenses.kt @@ -185,4 +185,12 @@ val OpenSourceLicenses = arrayOf( licenseText = R.raw.license_ofl, url = "https://github.com/itfoundry/poppins" ), + OpenSourceLibrary( + name = "Coil", + description = "An image loading library for Android backed by Kotlin Coroutines", + copyrightNote = "Copyright 2021 Coil Contributors", + licenseName = R.string.apache_license_name, + licenseText = R.raw.license_apache_2, + url = "https://coil-kt.github.io/coil/" + ), ) \ No newline at end of file diff --git a/settings.gradle.kts b/settings.gradle.kts index 1ff5aeaf..94f6e720 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -285,6 +285,14 @@ dependencyResolutionManagement { ) ) + version("coil", "1.4.0") + alias("coil.core") + .to("io.coil-kt", "coil") + .versionRef("coil") + alias("coil.compose") + .to("io.coil-kt", "coil-compose") + .versionRef("coil") + alias("leakcanary") .to("com.squareup.leakcanary", "leakcanary-android") .version("2.7")