2016-06-22 00:05:11 -04:00
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
2017-12-05 16:20:43 -08:00
|
|
|
|
2016-06-22 00:05:11 -04:00
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES := \
|
2017-12-05 16:20:43 -08:00
|
|
|
jsr305
|
|
|
|
|
|
|
|
LOCAL_STATIC_ANDROID_LIBRARIES := \
|
2016-06-22 00:05:11 -04:00
|
|
|
android-support-v4 \
|
|
|
|
android-support-v13 \
|
2017-06-08 23:52:45 -04:00
|
|
|
android-support-dynamic-animation \
|
2016-06-22 00:05:11 -04:00
|
|
|
android-support-v7-recyclerview \
|
|
|
|
android-support-v7-preference \
|
|
|
|
android-support-v7-appcompat \
|
2017-12-05 16:20:43 -08:00
|
|
|
android-support-v14-preference
|
|
|
|
|
|
|
|
LOCAL_USE_AAPT2 := true
|
2016-06-22 00:05:11 -04:00
|
|
|
|
|
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, src)
|
2017-12-05 16:20:43 -08:00
|
|
|
LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res
|
2016-06-22 00:05:11 -04:00
|
|
|
|
|
|
|
LOCAL_PACKAGE_NAME := EasterEgg
|
2018-02-23 12:57:51 +00:00
|
|
|
LOCAL_PRIVATE_PLATFORM_APIS := true
|
2016-06-22 00:05:11 -04:00
|
|
|
LOCAL_CERTIFICATE := platform
|
|
|
|
|
|
|
|
include $(BUILD_PACKAGE)
|
|
|
|
|
|
|
|
include $(call all-makefiles-under,$(LOCAL_PATH))
|