Skip to content
Snippets Groups Projects
Commit 30ce6f05 authored by Ying Wang's avatar Ying Wang
Browse files

Fix sim build

NDK does not support sim build.

Change-Id: If3164399d72786c9445cd308376497b8ba76011c
parent 2a118d84
No related branches found
No related tags found
No related merge requests found
......@@ -8,8 +8,13 @@ LOCAL_SRC_FILES := \
src/dictionary.cpp \
src/char_utils.cpp
LOCAL_NDK_VERSION := 4
LOCAL_SDK_VERSION := 8
# 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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment