summaryrefslogtreecommitdiff
path: root/Android.mk
blob: 64224ae9ee38aaf0f9b0693f2ec2ef3de3306d21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
LOCAL_PATH:= $(call my-dir)

include $(CLEAR_VARS)

LOCAL_SRC_FILES := \
         $(call all-subdir-java-files)

LOCAL_PACKAGE_NAME := PinyinIME

LOCAL_JNI_SHARED_LIBRARIES := libjni_pinyinime

LOCAL_STATIC_JAVA_LIBRARIES := com.android.inputmethod.pinyin.lib

LOCAL_CERTIFICATE := shared

# Make sure our dictionary file is not compressed, so we can read it with
# a raw file descriptor.
LOCAL_AAPT_FLAGS := -0 .dat

include $(BUILD_PACKAGE)

MY_PATH := $(LOCAL_PATH)

include $(MY_PATH)/jni/Android.mk
include $(MY_PATH)/lib/Android.mk