mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
The build system does not honor user tags on apps, and setting it is misleading. This removes the confusion by making the makefiles behave like they read. Change-Id: Ia90c376d627c6c9faeccf040695b88bb32779f82
18 lines
339 B
Makefile
Executable File
18 lines
339 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
|