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