blob: a6dc49b2bfeb9072b615e090a073f8d8bccf4493 [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
Ken Wakasa71a0e3f2010-06-07 23:49:22 +090010LOCAL_CERTIFICATE := vendor/google/certs/app
Amith Yamasani07b16032010-03-09 12:46:57 -080011
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
Ken Wakasabfd3b8b2010-05-18 11:01:46 +090018# com.google.android.inputmethod.latin in the LatinIME sandbox.
Ken Wakasa07cab722010-04-20 01:24:57 +090019LOCAL_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)