diff options
Diffstat (limited to 'libs')
| -rw-r--r-- | libs/androidfw/include/androidfw/ResourceTypes.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libs/androidfw/include/androidfw/ResourceTypes.h b/libs/androidfw/include/androidfw/ResourceTypes.h index 168a863df2bc..1e90b7c71376 100644 --- a/libs/androidfw/include/androidfw/ResourceTypes.h +++ b/libs/androidfw/include/androidfw/ResourceTypes.h @@ -1379,6 +1379,11 @@ struct ResTable_typeSpec enum : uint32_t { // Additional flag indicating an entry is public. SPEC_PUBLIC = 0x40000000u, + + // Additional flag indicating the resource id for this resource may change in a future + // build. If this flag is set, the SPEC_PUBLIC flag is also set since the resource must be + // public to be exposed as an API to other applications. + SPEC_STAGED_API = 0x20000000u, }; }; |