Add compose-color-picker library

This commit is contained in:
MM20 2022-01-20 19:20:54 +01:00
parent d258514541
commit c91576847b
No known key found for this signature in database
GPG Key ID: 0B61A8F2DEAFA389
2 changed files with 12 additions and 0 deletions

View File

@ -193,4 +193,12 @@ val OpenSourceLicenses = arrayOf(
licenseText = R.raw.license_apache_2,
url = "https://coil-kt.github.io/coil/"
),
OpenSourceLibrary(
name = "compose-color-picker",
description = "A component that provides an HSV color picker, written in Jetpack compose.",
copyrightNote = "Copyright (c) 2021GoDaddy Operating Company, LLC.",
licenseName = R.string.mit_license_name,
licenseText = R.raw.license_mit,
url = "https://github.com/godaddy/compose-color-picker"
),
)

View File

@ -293,6 +293,10 @@ dependencyResolutionManagement {
.to("io.coil-kt", "coil-compose")
.versionRef("coil")
alias("composecolorpicker")
.to("com.godaddy.android.colorpicker", "compose-color-picker")
.version("0.3.1")
alias("leakcanary")
.to("com.squareup.leakcanary", "leakcanary-android")
.version("2.7")