diff options
author | 2010-07-24 10:15:57 +0900 | |
---|---|---|
committer | 2010-07-24 11:50:38 +0900 | |
commit | ae1b71c6a8e0669dcdfef439a80ab72148a0cbb9 (patch) | |
tree | 129ee1b9ae7cd9af72914c55fc5da7e73273a9dd /java | |
parent | 4bbb39d52c0ab105b803df7b13bc241757c2345b (diff) | |
download | latinime-ae1b71c6a8e0669dcdfef439a80ab72148a0cbb9.tar.gz latinime-ae1b71c6a8e0669dcdfef439a80ab72148a0cbb9.tar.xz latinime-ae1b71c6a8e0669dcdfef439a80ab72148a0cbb9.zip |
Move Google's proprietary dictionaries for LatinIME to vendor/google/apps/LatinImeGoogle.
bug: 2811749
Refer to https://android-git.corp.google.com/g/58621
Change-Id: I3721ad3b3a29673f1ddd32871b1575a45c7365ee
Diffstat (limited to 'java')
-rwxr-xr-x | java/Android.mk | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/java/Android.mk b/java/Android.mk index c89e1c6bb..0d5a93db0 100755 --- a/java/Android.mk +++ b/java/Android.mk @@ -23,4 +23,11 @@ LOCAL_SDK_VERSION := 8 LOCAL_PROGUARD_FLAGS := -include $(LOCAL_PATH)/proguard.flags +# Define LOCAL_DICTIONARY_RESOURCE_DIR in order to overlay dictionaries. +# The overlay dictionary resource directory should have dictionary files such +# as raw-en/main.dict, raw-es/main.dict per locale. +ifneq ($(strip $(LOCAL_DICTIONARY_RESOURCE_DIR)),) +LOCAL_RESOURCE_DIR := $(LOCAL_DICTIONARY_RESOURCE_DIR) $(LOCAL_PATH)/res +endif + include $(BUILD_PACKAGE) |