Dan Sandler | 27a9fcc | 2016-06-22 00:05:11 -0400 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_MODULE_TAGS := optional |
Aurimas Liutikas | 41df109 | 2017-12-05 16:20:43 -0800 | [diff] [blame] | 5 | |
Dan Sandler | 27a9fcc | 2016-06-22 00:05:11 -0400 | [diff] [blame] | 6 | LOCAL_STATIC_JAVA_LIBRARIES := \ |
Aurimas Liutikas | 41df109 | 2017-12-05 16:20:43 -0800 | [diff] [blame] | 7 | jsr305 |
| 8 | |
| 9 | LOCAL_STATIC_ANDROID_LIBRARIES := \ |
Aurimas Liutikas | 1d6c6da | 2018-04-03 17:08:29 -0700 | [diff] [blame] | 10 | androidx.legacy_legacy-support-v4 \ |
| 11 | androidx.legacy_legacy-support-v13 \ |
| 12 | androidx.dynamicanimation_dynamicanimation \ |
| 13 | androidx.recyclerview_recyclerview \ |
| 14 | androidx.preference_preference \ |
| 15 | androidx.appcompat_appcompat \ |
| 16 | androidx.legacy_legacy-preference-v14 |
Aurimas Liutikas | 41df109 | 2017-12-05 16:20:43 -0800 | [diff] [blame] | 17 | |
| 18 | LOCAL_USE_AAPT2 := true |
Dan Sandler | 27a9fcc | 2016-06-22 00:05:11 -0400 | [diff] [blame] | 19 | |
| 20 | LOCAL_SRC_FILES := $(call all-java-files-under, src) |
Aurimas Liutikas | 41df109 | 2017-12-05 16:20:43 -0800 | [diff] [blame] | 21 | LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res |
Dan Sandler | 27a9fcc | 2016-06-22 00:05:11 -0400 | [diff] [blame] | 22 | |
| 23 | LOCAL_PACKAGE_NAME := EasterEgg |
Anton Hansson | ab6ec61 | 2018-02-23 12:57:51 +0000 | [diff] [blame] | 24 | LOCAL_PRIVATE_PLATFORM_APIS := true |
Dan Sandler | 27a9fcc | 2016-06-22 00:05:11 -0400 | [diff] [blame] | 25 | LOCAL_CERTIFICATE := platform |
| 26 | |
| 27 | include $(BUILD_PACKAGE) |
| 28 | |
| 29 | include $(call all-makefiles-under,$(LOCAL_PATH)) |