Willie Koomson | 2bf5017 | 2017-06-30 16:11:29 -0700 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_MODULE_TAGS := samples tests |
| 5 | |
| 6 | # Only compile source java files in this apk. |
| 7 | LOCAL_SRC_FILES := $(call all-java-files-under, src) |
| 8 | |
Alan Viverette | a3d0373 | 2018-02-20 16:26:48 -0500 | [diff] [blame] | 9 | LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res |
| 10 | |
Liam Clark | bd43fbe | 2018-11-09 17:40:35 -0800 | [diff] [blame] | 11 | LOCAL_STATIC_ANDROID_LIBRARIES := \ |
Aurimas Liutikas | a955aae | 2019-01-30 22:40:04 -0800 | [diff] [blame] | 12 | com.google.android.material_material \ |
Liam Clark | f63bc32 | 2018-11-26 12:36:47 -0800 | [diff] [blame] | 13 | androidx.appcompat_appcompat \ |
Liam Clark | 1ca6b6e | 2018-11-26 16:48:27 -0800 | [diff] [blame] | 14 | androidx.recyclerview_recyclerview \ |
| 15 | androidx.lifecycle_lifecycle-livedata \ |
| 16 | androidx.lifecycle_lifecycle-viewmodel |
Liam Clark | bd43fbe | 2018-11-09 17:40:35 -0800 | [diff] [blame] | 17 | |
Alan Viverette | a3d0373 | 2018-02-20 16:26:48 -0500 | [diff] [blame] | 18 | LOCAL_USE_AAPT2 := true |
Willie Koomson | 2bf5017 | 2017-06-30 16:11:29 -0700 | [diff] [blame] | 19 | |
| 20 | LOCAL_PACKAGE_NAME := IntentPlayground |
| 21 | |
| 22 | LOCAL_SDK_VERSION := current |
| 23 | |
| 24 | |
| 25 | include $(BUILD_PACKAGE) |
| 26 | |
Liam Clark | bd43fbe | 2018-11-09 17:40:35 -0800 | [diff] [blame] | 27 | # Use the following include to make our test apk. |
Willie Koomson | 2bf5017 | 2017-06-30 16:11:29 -0700 | [diff] [blame] | 28 | include $(call all-makefiles-under,$(LOCAL_PATH)) |