blob: 97c906f2617bd6b978de6d7ad780ee85cdbb9ee2 [file] [log] [blame]
Amith Yamasani07b16032010-03-09 12:46:57 -08001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_MODULE_TAGS := optional
5
6LOCAL_SRC_FILES := $(call all-subdir-java-files)
7
Ken Wakasa1cf0ce72010-04-07 18:37:36 +09008LOCAL_PACKAGE_NAME := LatinIme2Google
Amith Yamasani07b16032010-03-09 12:46:57 -08009
10LOCAL_CERTIFICATE := shared
11
Ken Wakasa1cf0ce72010-04-07 18:37:36 +090012LOCAL_JNI_SHARED_LIBRARIES := libjni_latinime2
Amith Yamasani07b16032010-03-09 12:46:57 -080013
14LOCAL_STATIC_JAVA_LIBRARIES := android-common
15
16#LOCAL_AAPT_FLAGS := -0 .dict
Ken Wakasa07cab722010-04-20 01:24:57 +090017# The following flag is required because we use a different package name
18# com.google.android.inputmethod.latin2 in the LatinIME sandbox.
19LOCAL_AAPT_FLAGS := --custom-package com.android.inputmethod.latin
Amith Yamasani07b16032010-03-09 12:46:57 -080020
21LOCAL_SDK_VERSION := current
22
23LOCAL_PROGUARD_FLAGS := -include $(LOCAL_PATH)/proguard.flags
24
25include $(BUILD_PACKAGE)