blob: 3472079d162a67fc8cae32e874b3f199eb70f8e0 [file] [log] [blame]
Vadim Tryshev1b4560c2018-10-30 15:37:33 -07001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_MODULE_TAGS := samples
5
6# Only compile source java files in this apk.
7LOCAL_SRC_FILES := $(call all-java-files-under, src)
8
9LOCAL_PACKAGE_NAME := Aardwolf
Bob Badour936c3402021-04-20 14:02:30 -070010LOCAL_LICENSE_KINDS := SPDX-license-identifier-Apache-2.0
11LOCAL_LICENSE_CONDITIONS := notice
12LOCAL_NOTICE_FILE := $(LOCAL_PATH)/../../NOTICE
Vadim Tryshev1b4560c2018-10-30 15:37:33 -070013
14LOCAL_SDK_VERSION := current
15
16LOCAL_DEX_PREOPT := false
17
18include $(BUILD_PACKAGE)
19
20# Use the following include to make our test apk.
21include $(call all-makefiles-under,$(LOCAL_PATH))