Add Apache Commons Text

This commit is contained in:
MM20 2022-02-19 21:08:08 +01:00
parent a6c4b6431b
commit 5e9719afa7
No known key found for this signature in database
GPG Key ID: 0B61A8F2DEAFA389
2 changed files with 11 additions and 0 deletions

View File

@ -187,4 +187,11 @@ val OpenSourceLicenses = arrayOf(
licenseText = R.raw.license_mit,
url = "https://github.com/godaddy/compose-color-picker"
),
OpenSourceLibrary(
name = "Apache Commons Text",
description = "Apache Commons Text is a library focused on algorithms working on strings. ",
licenseName = R.string.apache_license_name,
licenseText = R.raw.license_apache_2,
url = "https://commons.apache.org/proper/commons-text/"
),
)

View File

@ -294,6 +294,10 @@ dependencyResolutionManagement {
.to("org.jsoup", "jsoup")
.version("1.14.2")
alias("commons.text")
.to("org.apache.commons", "commons-text")
.version("1.9")
version("materialdialogs", "3.3.0")
alias("materialdialogs.core")
.to("com.afollestad.material-dialogs", "core")