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 27cb1259..ff1f12cf 100644 --- a/base/src/main/java/de/mm20/launcher2/licenses/OpenSourceLicenses.kt +++ b/base/src/main/java/de/mm20/launcher2/licenses/OpenSourceLicenses.kt @@ -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/" + ), ) \ No newline at end of file diff --git a/settings.gradle.kts b/settings.gradle.kts index 21549dc2..9c8a063f 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -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")