1LOCAL_PATH := $(call my-dir) 2 3include $(CLEAR_VARS) 4 5LOCAL_USE_AAPT2 := true 6 7LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res 8 9LOCAL_STATIC_ANDROID_LIBRARIES := \ 10 androidx.core_core \ 11 androidx.appcompat_appcompat 12 13# Build all java files in the src subdirectory 14LOCAL_SRC_FILES := $(call all-java-files-under, src) 15 16LOCAL_SDK_VERSION := current 17 18LOCAL_PRODUCT_MODULE := true 19 20# Name of the APK to build 21LOCAL_PACKAGE_NAME := SampleLocationAttribution 22 23# Tell it to build an APK 24include $(BUILD_PACKAGE) 25