androidQ mtk turn off live wallpaper

Time:
Before 2020/09/17, the company does not allow csdn, and the notes are written elsewhere. recently tidied up

device/mediateksample/k65v1_32_bsp/ProjectConfig.mk

MTK_LIVEWALLPAPER_APP = no

device/google/marlin/common/base.mk

# Live Wallpapers
ifeq ($(strip $(MTK_LIVEWALLPAPER_APP)), yes)
       PRODUCT_PACKAGES += \
                 LiveWallpapers \
                 LiveWallpapersPicker \
                 VisualizationWallpapers \
                 librs_jni
endif

device/mediatek/system/common/device.mk

ifeq ($(strip $(MTK_LIVEWALLPAPER_APP)), yes)
  PRODUCT_PACKAGES += LiveWallpapersPicker
endif

build/make/target/product/full_base.mk

ifeq ($(strip $(MTK_LIVEWALLPAPER_APP)), yes)
  PRODUCT_PACKAGES += LiveWallpapersPicker
endif

build/make/target/product/mainline_system.mk

ifeq ($(strip $(MTK_LIVEWALLPAPER_APP)), yes)
  PRODUCT_PACKAGES += LiveWallpapersPicker
endif

Guess you like

Origin blog.csdn.net/a396604593/article/details/129819538