Fix sim build
NDK does not support sim build. Change-Id: If3164399d72786c9445cd308376497b8ba76011c
This commit is contained in:
parent
2a118d844e
commit
30ce6f0530
1 changed files with 7 additions and 2 deletions
|
@ -8,8 +8,13 @@ LOCAL_SRC_FILES := \
|
|||
src/dictionary.cpp \
|
||||
src/char_utils.cpp
|
||||
|
||||
# NDK does not support sim build.
|
||||
ifneq ($(TARGET_SIMULATOR),true)
|
||||
LOCAL_NDK_VERSION := 4
|
||||
LOCAL_SDK_VERSION := 8
|
||||
else
|
||||
LOCAL_C_INCLUDES += $(JNI_H_INCLUDE)
|
||||
endif
|
||||
|
||||
LOCAL_MODULE := libjni_latinime
|
||||
|
||||
|
|
Loading…
Reference in a new issue