diff options
| author | 2020-10-01 17:00:16 +0000 | |
|---|---|---|
| committer | 2020-10-01 17:00:16 +0000 | |
| commit | 93f90e6aa3e2c0549e95ef9dae2fb8fdf1ca7fa5 (patch) | |
| tree | ef5f6056c495f4529231d3ab9957baa948cf3f27 | |
| parent | 31b3d88a93585778c3d12cb4a0b0687914e81b79 (diff) | |
| parent | 91331e5b55d9399ac6f3abf2f5ef402c5dc85c08 (diff) | |
Merge "Fix mismatch in the REQUIRED_(NOT_)FEATURE_ATTR ids"
| -rw-r--r-- | tools/aapt2/dump/DumpManifest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/aapt2/dump/DumpManifest.cpp b/tools/aapt2/dump/DumpManifest.cpp index 71c70da96109..74978696fdd5 100644 --- a/tools/aapt2/dump/DumpManifest.cpp +++ b/tools/aapt2/dump/DumpManifest.cpp @@ -79,8 +79,8 @@ enum { ISGAME_ATTR = 0x10103f4, VERSION_ATTR = 0x01010519, CERT_DIGEST_ATTR = 0x01010548, - REQUIRED_FEATURE_ATTR = 0x01010557, - REQUIRED_NOT_FEATURE_ATTR = 0x01010558, + REQUIRED_FEATURE_ATTR = 0x01010554, + REQUIRED_NOT_FEATURE_ATTR = 0x01010555, IS_STATIC_ATTR = 0x0101055a, REQUIRED_SYSTEM_PROPERTY_NAME_ATTR = 0x01010565, REQUIRED_SYSTEM_PROPERTY_VALUE_ATTR = 0x01010566, |