1LOCAL_PATH:= $(call my-dir) 2include $(CLEAR_VARS) 3 4LOCAL_MODULE_TAGS := optional 5 6LOCAL_STATIC_JAVA_LIBRARIES := \ 7 jsr305 8 9LOCAL_STATIC_ANDROID_LIBRARIES := \ 10 android-support-v4 \ 11 android-support-v13 \ 12 android-support-dynamic-animation \ 13 android-support-v7-recyclerview \ 14 android-support-v7-preference \ 15 android-support-v7-appcompat \ 16 android-support-v14-preference 17 18LOCAL_USE_AAPT2 := true 19 20LOCAL_SRC_FILES := $(call all-java-files-under, src) 21LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res 22 23LOCAL_PACKAGE_NAME := EasterEgg 24LOCAL_PRIVATE_PLATFORM_APIS := true 25LOCAL_CERTIFICATE := platform 26 27include $(BUILD_PACKAGE) 28 29include $(call all-makefiles-under,$(LOCAL_PATH)) 30