Add emoji4j library

This commit is contained in:
MM20 2023-08-26 23:23:21 +02:00
parent d1371b224d
commit 6946175c29
No known key found for this signature in database
GPG Key ID: 0B61A8F2DEAFA389
3 changed files with 12 additions and 0 deletions

View File

@ -111,6 +111,8 @@ dependencies {
implementation(libs.coil.core)
implementation(libs.coil.compose)
implementation(libs.emoji4j)
implementation(project(":libs:material-color-utilities"))
implementation(project(":core:base"))

View File

@ -205,4 +205,11 @@ val OpenSourceLicenses = arrayOf(
licenseText = R.raw.license_apache_2,
url = "https://bigbadaboom.github.io/androidsvg/"
),
OpenSourceLibrary(
name = "emoji4j",
description = "Emoji4j is a high-performance, standards-compliant emoji processor supporting Unicode 15 for Java 8 or later.",
licenseName = R.string.apache_license_name,
licenseText = R.raw.license_apache_2,
url = "https://github.com/sigpwned/emoji4j"
),
)

View File

@ -232,6 +232,9 @@ dependencyResolutionManagement {
library("tinypinyin", "com.github.promeg", "tinypinyin")
.version("2.0.2")
library("emoji4j", "com.sigpwned", "emoji4j-core")
.version("15.0.1")
version("junit", "4.13")
library("junit", "junit", "junit").versionRef("junit")
bundle("tests", listOf("junit"))