22 lines
561 B
Makefile
22 lines
561 B
Makefile
# This file is sourced by builds to remove certain apps/features
|
|
|
|
# Remove stock aosp packages using filter-out (more reliable than -=)
|
|
PRODUCT_PACKAGES := $(filter-out \
|
|
Launcher3 \
|
|
Launcher3QuickStep \
|
|
Launcher3Go \
|
|
TrebuchetQuickStep \
|
|
Galaxy4 \
|
|
HoloSpiralWallpaper \
|
|
LiveWallpapersPicker \
|
|
MagicSmokeWallpapers \
|
|
NoiseField \
|
|
PhaseBeam \
|
|
VisualizationWallpapers \
|
|
PhotoTable, \
|
|
$(PRODUCT_PACKAGES))
|
|
|
|
# Tell the build system to ignore these packages forcibly
|
|
#PRODUCT_PACKAGE_OVERRIDES += \
|
|
# name_here
|