This is an experiment to see if flash contention is causing occasional keyboard hicups that people complain about. A side effect is that the APK (with 5 languages) reduces in size by 25%.
17 lines
340 B
Makefile
Executable file
17 lines
340 B
Makefile
Executable file
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_SRC_FILES := $(call all-subdir-java-files)
|
|
|
|
LOCAL_PACKAGE_NAME := LatinIME
|
|
|
|
LOCAL_CERTIFICATE := shared
|
|
|
|
LOCAL_JNI_SHARED_LIBRARIES := libjni_latinime
|
|
|
|
#LOCAL_AAPT_FLAGS := -0 .dict
|
|
|
|
include $(BUILD_PACKAGE)
|
|
include $(LOCAL_PATH)/dictionary/Android.mk
|