From 9feb96d47d802829705367fd692cecd09f9af3b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5rten=20Kongstad?= Date: Wed, 31 May 2023 12:55:40 +0200 Subject: [PATCH] Change aconfig parameter from --namespace to --package The namespace field in aconfig is now called package, and `aconfig create-cache --namespace ...` is now called `aconfig create-cache --package ...`. Change the call-site accordingly. The Soong code still uses the namespace terminology. A follow-up CL will change the code to refer to package instead. Bug: 285000854 Test: m nothing Change-Id: Id787f80c1fa4ab5d4bc37410d6712aadd8833fb4 --- device_config/init.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/device_config/init.go b/device_config/init.go index 0a4645b2b..6d235c484 100644 --- a/device_config/init.go +++ b/device_config/init.go @@ -27,7 +27,7 @@ var ( aconfigRule = pctx.AndroidStaticRule("aconfig", blueprint.RuleParams{ Command: `${aconfig} create-cache` + - ` --namespace ${namespace}` + + ` --package ${namespace}` + ` --declarations ${in}` + ` ${values}` + ` --cache ${out}.tmp` +