blob: d4f9dfbcbbb7eb32cb84d80b0ba0fa55fa795071 [file] [log] [blame]
Willie Koomson2bf50172017-06-30 16:11:29 -07001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_MODULE_TAGS := samples tests
5
6# Only compile source java files in this apk.
7LOCAL_SRC_FILES := $(call all-java-files-under, src)
8
Alan Viverettea3d03732018-02-20 16:26:48 -05009LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res
10
Liam Clarkbd43fbe2018-11-09 17:40:35 -080011LOCAL_STATIC_ANDROID_LIBRARIES := \
Aurimas Liutikasa955aae2019-01-30 22:40:04 -080012 com.google.android.material_material \
Liam Clarkf63bc322018-11-26 12:36:47 -080013 androidx.appcompat_appcompat \
Liam Clark1ca6b6e2018-11-26 16:48:27 -080014 androidx.recyclerview_recyclerview \
15 androidx.lifecycle_lifecycle-livedata \
16 androidx.lifecycle_lifecycle-viewmodel
Liam Clarkbd43fbe2018-11-09 17:40:35 -080017
Alan Viverettea3d03732018-02-20 16:26:48 -050018LOCAL_USE_AAPT2 := true
Willie Koomson2bf50172017-06-30 16:11:29 -070019
20LOCAL_PACKAGE_NAME := IntentPlayground
21
22LOCAL_SDK_VERSION := current
23
24
25include $(BUILD_PACKAGE)
26
Liam Clarkbd43fbe2018-11-09 17:40:35 -080027# Use the following include to make our test apk.
Willie Koomson2bf50172017-06-30 16:11:29 -070028include $(call all-makefiles-under,$(LOCAL_PATH))