Change from LOCAL_JNI_SHARED_LIBRARIES to LOCAL_REQUIRED_MODULES to make sure the JNI library is built and included when DefaultContainerService is built. Change-Id: I322c72415237c2b70bff345d50e2a9e4f2e6d988
17 lines
333 B
Makefile
Executable File
17 lines
333 B
Makefile
Executable File
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_SRC_FILES := $(call all-subdir-java-files)
|
|
|
|
LOCAL_PACKAGE_NAME := DefaultContainerService
|
|
|
|
LOCAL_REQUIRED_MODULES := libdefcontainer_jni
|
|
|
|
LOCAL_CERTIFICATE := platform
|
|
|
|
include $(BUILD_PACKAGE)
|
|
|
|
include $(call all-makefiles-under,$(LOCAL_PATH))
|