mirror of
https://github.com/Evolution-X-Devices/device_xiaomi_stone
synced 2026-01-27 16:47:35 +00:00
set new flag TARGET_DEBLOAT for optional remove_packages this may be useful to debloat updater for unofficial roms. you can expand the list for any package, just write them in the Android.mk of remove_packages folder Co-Authored-By: Michael Bestas <mikeNG@users.noreply.github.com>
12 lines
297 B
Makefile
12 lines
297 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := RemovePackages
|
|
LOCAL_MODULE_CLASS := APPS
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_OVERRIDES_PACKAGES := Updater
|
|
LOCAL_UNINSTALLABLE_MODULE := true
|
|
LOCAL_CERTIFICATE := PRESIGNED
|
|
LOCAL_SRC_FILES := /dev/null
|
|
include $(BUILD_PREBUILT)
|