Files
android_development/samples/IntentPlayground/Android.mk
KOUSHIK PANUGANTI 09824249c4 Migrated various apps under development/samples/IntentPlayground to androidx
Bug: 76692459
Test: make IntentPlayground
Change-Id: I9bb3f3492e41d48968caa023861d1552cf0278bd
2018-05-24 20:12:03 +00:00

22 lines
449 B
Makefile

LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE_TAGS := samples tests
# Only compile source java files in this apk.
LOCAL_SRC_FILES := $(call all-java-files-under, src)
LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res
LOCAL_USE_AAPT2 := true
LOCAL_PACKAGE_NAME := IntentPlayground
LOCAL_SDK_VERSION := current
include $(BUILD_PACKAGE)
# Use the folloing include to make our test apk.
include $(call all-makefiles-under,$(LOCAL_PATH))