From 0aabb11dd4db568422c0004c43c6c450008e96b7 Mon Sep 17 00:00:00 2001 From: Steven Moreland Date: Mon, 26 Aug 2019 11:31:33 -0700 Subject: [PATCH] Add $ANDROID_PRODUCT_OUT/apex to installclean. When removing dependencies from APEXes, the lib files were still there even after installclean. Bug: 139016109 Test: run installclean, see apex directories go away :D Change-Id: I4dad8e3aa0042cdd5bbb76bd6fdd01b025b98495 --- ui/build/cleanbuild.go | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/build/cleanbuild.go b/ui/build/cleanbuild.go index 8e7f96a4e..bfe2c36e4 100644 --- a/ui/build/cleanbuild.go +++ b/ui/build/cleanbuild.go @@ -99,6 +99,7 @@ func installClean(ctx Context, config Config, what int) { productOut("*.img"), productOut("*.zip"), productOut("android-info.txt"), + productOut("apex"), productOut("kernel"), productOut("data"), productOut("skin"),