From a91332a9030197f1f43a21d8ba6b4fd0aa279d85 Mon Sep 17 00:00:00 2001 From: Quinn Cypher Date: Wed, 8 May 2024 07:02:19 -0400 Subject: Pull the emoji list from unicode.org (#612) - Removing unused information (names and descriptions) from the Emoji class - Creating a Gradle task that generates a more efficient res/raw/emojis.txt file from the most recent Unicode standard - Saving recently used emoji preferences as emoji values rather than names - Migrating old user preferences to the new system--- build.gradle | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'build.gradle') diff --git a/build.gradle b/build.gradle index 9bda832..cd23183 100644 --- a/build.gradle +++ b/build.gradle @@ -103,6 +103,14 @@ tasks.register('buildKeyboardFont') { } } +tasks.register('genEmojis') { + println "\nGenerating res/raw/emojis.txt" + exec { + workingDir = projectDir + commandLine "python", "gen_emoji.py" + } +} + tasks.withType(Test).configureEach { dependsOn 'genLayoutsList' dependsOn 'checkKeyboardLayouts' -- cgit v1.2.3