diff options
author | Adam Lesinski <adamlesinski@google.com> | 2014-08-20 14:59:19 -0700 |
---|---|---|
committer | Adam Lesinski <adamlesinski@google.com> | 2014-08-20 17:55:33 -0700 |
commit | 6022debdbcc4498736580640c6287b57872617a2 (patch) | |
tree | 17fa702311166e6f78ad07af3e767ca672817135 /include | |
parent | e02f340d9a0c4f841376c3db8ec93f65e7e58417 (diff) | |
download | frameworks_base-6022debdbcc4498736580640c6287b57872617a2.zip frameworks_base-6022debdbcc4498736580640c6287b57872617a2.tar.gz frameworks_base-6022debdbcc4498736580640c6287b57872617a2.tar.bz2 |
AAPT: Fix regression generating dynamic ref table for shared libraries
AAPT stopped generating dynamic reference tables for shared libraries.
Change-Id: Ib0025811bdca1a4756eb21080dd6b6bb3fc1ca3d
Diffstat (limited to 'include')
-rw-r--r-- | include/androidfw/ResourceTypes.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/androidfw/ResourceTypes.h b/include/androidfw/ResourceTypes.h index b56829d..1af497c 100644 --- a/include/androidfw/ResourceTypes.h +++ b/include/androidfw/ResourceTypes.h @@ -1459,6 +1459,9 @@ public: // Loads an unmapped reference table from the package. status_t load(const ResTable_lib_header* const header); + // Adds mappings from the other DynamicRefTable + status_t addMappings(const DynamicRefTable& other); + // Creates a mapping from build-time package ID to run-time package ID for // the given package. status_t addMapping(const String16& packageName, uint8_t packageId); |