Instead of the final jar with classes.dex inside. Change-Id: I2bc7eb6faedf328a93a6e2eacc4334d87761f597
15 lines
385 B
Makefile
15 lines
385 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_SRC_FILES := $(call all-subdir-java-files)
|
|
|
|
LOCAL_MODULE:= com.android.nfc_extras
|
|
|
|
include $(BUILD_JAVA_LIBRARY)
|
|
|
|
# put the classes.jar, with full class files instead of classes.dex inside, into the dist directory
|
|
$(call dist-for-goals, droidcore, $(full_classes_jar):com.android.nfc_extras.jar)
|