- Creates modules and includes only dependencies that are needed by the parent module instead of including the entire source tree. The new structure makes intellij much more responsive and fast. - Adds proper android facets when AndroidManifest.xml exists for quick resource lookup. - Automatically includes intermediates directory for generated R files. - Exclusion of un-neccessary language resource folders from id lookups. - Automatic vcs configuration for git roots. - Multi-module make file support. - Aggregate modules for multi-module make files. Change-Id: I181670b269faa1cc3ab257692833821fab20f73c
14 lines
214 B
Makefile
14 lines
214 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES := \
|
|
guavalib \
|
|
|
|
LOCAL_SRC_FILES := $(call all-subdir-java-files)
|
|
|
|
LOCAL_MODULE:= idegen
|
|
|
|
include $(BUILD_HOST_JAVA_LIBRARY)
|
|
|