ab308a6727
* Remove Double Definition * Reordeder Alphabetic * Move Audio and Media Files to Configs * Move Wifi Configuration to Configs * Cleanup Overlay and Reorder * Move Privapp Permission to new Folder * Reorder Properties and rename mk * Move Xiaomi Doze to new Folder
26 lines
569 B
Makefile
26 lines
569 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, src)
|
|
|
|
LOCAL_PACKAGE_NAME := XiaomiDoze
|
|
LOCAL_CERTIFICATE := platform
|
|
LOCAL_PRIVATE_PLATFORM_APIS := true
|
|
LOCAL_PRIVILEGED_MODULE := true
|
|
LOCAL_PRIVATE_PLATFORM_APIS := true
|
|
|
|
LOCAL_USE_AAPT2 := true
|
|
|
|
LOCAL_STATIC_ANDROID_LIBRARIES := \
|
|
androidx.preference_preference
|
|
|
|
LOCAL_RESOURCE_DIR := \
|
|
$(LOCAL_PATH)/res
|
|
|
|
LOCAL_PROGUARD_FLAG_FILES := proguard.flags
|
|
|
|
include $(BUILD_PACKAGE)
|
|
|
|
include $(call all-makefiles-under,$(LOCAL_PATH))
|