From 14010567d00ea603fe805b417a64945f490c9b79 Mon Sep 17 00:00:00 2001 From: Menny Even Danan Date: Thu, 1 Mar 2018 10:40:18 -0500 Subject: [PATCH] Fix missing words file. NO AOSP source --- build.gradle | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 03fbc811..b5c0b3c1 100644 --- a/build.gradle +++ b/build.gradle @@ -108,10 +108,9 @@ task mergeAllWordLists(type: MergeWordsListTask) { inputWordsListFiles = [ new File(project.getProjectDir(), "dictionary/words.xml"), - new File(project.getProjectDir(), "dictionary/words_from_aosp.xml"), ] as File[] outputWordsListFile new File(project.getProjectDir(), "dictionary/words_merged.xml") - maxWordsInList 100000 + maxWordsInList 300000 } task makeDictionary(type: MakeDictionaryTask) {