This document discusses Android resource management and different approaches tried to allow a component's resources to be accessible when embedded in an application. The approaches included exporting the component as a JAR, using aapt with separate resource directories, and programmatically merging the component and application resource tables. The key challenges were that the resource IDs did not match at runtime and Android only allows one package per application. More information is provided on how aapt and the ResTable class handle resource tables and ID generation.