Hello Say there is module 'X' writtern twice in Android.mk include $(CLEAR_VARS) LOCAL_MODULE := X LOCAL_MODULE_CLASS := JAVA_LIBRARIES LOCAL_SRC_FILES := same_path/classes-header.jar
include $(CLEAR_VARS) LOCAL_MODULE := X LOCAL_MODULE_CLASS := JAVA_LIBRARIES LOCAL_SRC_FILES := same_path/classes.jar Is there any way to install X such that both classes.jar and classes-header.jar will be in out folder? At present with above Android.mk, the rule that is writtern first is being compiled and the rest is being ingnored and so Im seeing only classes-header.jar in out folder Thanks in advance -- -- You received this message because you are subscribed to the "Android Building" mailing list. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-building?hl=en --- You received this message because you are subscribed to the Google Groups "Android Building" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/android-building/CAH4VoYmaY%3DokDbzrBCa%2BGt9ysJNLasKMeK2NKVTH2Lq95QjE3w%40mail.gmail.com.
