22 lines
516 B
Makefile
22 lines
516 B
Makefile
|
LOCAL_PATH:= $(call my-dir)
|
||
|
include $(CLEAR_VARS)
|
||
|
|
||
|
LOCAL_MODULE_TAGS := optional
|
||
|
LOCAL_STATIC_JAVA_LIBRARIES := \
|
||
|
android-support-v4 \
|
||
|
android-support-v13 \
|
||
|
android-support-v7-recyclerview \
|
||
|
android-support-v7-preference \
|
||
|
android-support-v7-appcompat \
|
||
|
android-support-v14-preference \
|
||
|
jsr305
|
||
|
|
||
|
LOCAL_SRC_FILES := $(call all-java-files-under, src)
|
||
|
|
||
|
LOCAL_PACKAGE_NAME := EasterEgg
|
||
|
LOCAL_CERTIFICATE := platform
|
||
|
|
||
|
include $(BUILD_PACKAGE)
|
||
|
|
||
|
include $(call all-makefiles-under,$(LOCAL_PATH))
|