29 lines
707 B
Makefile
29 lines
707 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, src)
|
|
LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res
|
|
|
|
LOCAL_STATIC_ANDROID_LIBRARIES := androidx.core_core \
|
|
androidx.cardview_cardview \
|
|
androidx.preference_preference
|
|
|
|
LOCAL_PACKAGE_NAME := OpenDelta
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_PRIVILEGED_MODULE := true
|
|
LOCAL_USE_AAPT2 := true
|
|
LOCAL_JNI_SHARED_LIBRARIES := libopendelta
|
|
LOCAL_REQUIRED_MODULES := libopendelta
|
|
LOCAL_PROGUARD_ENABLED := disabled
|
|
|
|
ifneq (,$(wildcard frameworks/base))
|
|
LOCAL_PRIVATE_PLATFORM_APIS := true
|
|
else
|
|
LOCAL_SDK_VERSION := system_current
|
|
endif
|
|
|
|
include $(BUILD_PACKAGE)
|
|
|
|
include $(call all-makefiles-under,$(LOCAL_PATH))
|