This commit is contained in:
MM20 2022-01-19 21:46:09 +01:00
parent d0ae9e59ae
commit d258514541
No known key found for this signature in database
GPG Key ID: 0B61A8F2DEAFA389
2 changed files with 16 additions and 0 deletions

View File

@ -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/"
),
)

View File

@ -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")