diff options
author | Donald Chai <dchai@google.com> | 2020-01-06 13:52:41 -0800 |
---|---|---|
committer | Donald Chai <dchai@google.com> | 2020-01-07 12:55:52 -0800 |
commit | 94e4a01dec2ac26f49808c2fe7011855ea5614f6 (patch) | |
tree | ce3d28f1b80035cd2eff069155a7fec0095b80ef /tools/aapt2/cmd/Compile.cpp | |
parent | d71c0bc37e18034bb480e1042014f515d2dd0590 (diff) |
Add option to avoid clobbering visibility of <declare-styleable>
"aapt2 compile" marks styleables as public instead of preserving
information from <public/> or --visibility options. This behavior can
now be disabled via --preserve-visibility-of-styleables.
Bug: 146649511
Change-Id: Ifb8ab396573d1393df737a59625e79e9cf2494a7
Tested: aapt2_tests
Diffstat (limited to 'tools/aapt2/cmd/Compile.cpp')
-rw-r--r-- | tools/aapt2/cmd/Compile.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/aapt2/cmd/Compile.cpp b/tools/aapt2/cmd/Compile.cpp index d50b1de335fb..32686538c10d 100644 --- a/tools/aapt2/cmd/Compile.cpp +++ b/tools/aapt2/cmd/Compile.cpp @@ -159,6 +159,7 @@ static bool CompileTable(IAaptContext* context, const CompileOptions& options, ResourceParserOptions parser_options; parser_options.error_on_positional_arguments = !options.legacy_mode; + parser_options.preserve_visibility_of_styleables = options.preserve_visibility_of_styleables; parser_options.translatable = translatable_file; // If visibility was forced, we need to use it when creating a new resource and also error if |