1LOCAL_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 9LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res 10 11LOCAL_STATIC_ANDROID_LIBRARIES := \ 12 com.google.android.material_material \ 13 androidx.appcompat_appcompat \ 14 androidx.recyclerview_recyclerview \ 15 androidx.lifecycle_lifecycle-livedata \ 16 androidx.lifecycle_lifecycle-viewmodel 17 18LOCAL_USE_AAPT2 := true 19 20LOCAL_PACKAGE_NAME := IntentPlayground 21 22LOCAL_SDK_VERSION := current 23 24 25include $(BUILD_PACKAGE) 26 27# Use the following include to make our test apk. 28include $(call all-makefiles-under,$(LOCAL_PATH)) 29