summaryrefslogtreecommitdiff
path: root/tools/aapt2/Resource.h
diff options
context:
space:
mode:
author Jeremy Meyer <jakmcbane@google.com> 2025-02-24 11:01:49 -0800
committer Jeremy Meyer <jakmcbane@google.com> 2025-03-06 16:50:57 -0800
commit08c54a712ed7a6463d1b6471c75c05fe1aabd36d (patch)
tree3832989516a61303682e30e9230e5d4492d54584 /tools/aapt2/Resource.h
parent61c93118bccb8c17e1f45f268e8ebf22394aeed7 (diff)
Persist whether xml resources have flags
This stores whether an xml document has feature flags in it in a ResTable_entry so that at runtime we can know not to do extra work looking for flags. Test: Automation Bug: 377974898 Flag: android.content.res.layout_readwrite_flags Change-Id: Id43b2d9941d1fab8c654d081bf19df5a33a464f3
Diffstat (limited to 'tools/aapt2/Resource.h')
-rw-r--r--tools/aapt2/Resource.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/aapt2/Resource.h b/tools/aapt2/Resource.h
index 0d261abd728d..e51477c668dd 100644
--- a/tools/aapt2/Resource.h
+++ b/tools/aapt2/Resource.h
@@ -249,6 +249,8 @@ struct ResourceFile {
// Flag
std::optional<FeatureFlagAttribute> flag;
+
+ bool uses_readwrite_feature_flags = false;
};
/**