Vadim Tryshev | 1b4560c | 2018-10-30 15:37:33 -0700 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_MODULE_TAGS := samples |
| 5 | |
| 6 | # Only compile source java files in this apk. |
| 7 | LOCAL_SRC_FILES := $(call all-java-files-under, src) |
| 8 | |
| 9 | LOCAL_PACKAGE_NAME := Aardwolf |
Bob Badour | 936c340 | 2021-04-20 14:02:30 -0700 | [diff] [blame] | 10 | LOCAL_LICENSE_KINDS := SPDX-license-identifier-Apache-2.0 |
| 11 | LOCAL_LICENSE_CONDITIONS := notice |
| 12 | LOCAL_NOTICE_FILE := $(LOCAL_PATH)/../../NOTICE |
Vadim Tryshev | 1b4560c | 2018-10-30 15:37:33 -0700 | [diff] [blame] | 13 | |
| 14 | LOCAL_SDK_VERSION := current |
| 15 | |
| 16 | LOCAL_DEX_PREOPT := false |
| 17 | |
| 18 | include $(BUILD_PACKAGE) |
| 19 | |
| 20 | # Use the following include to make our test apk. |
| 21 | include $(call all-makefiles-under,$(LOCAL_PATH)) |