Adam Lesinski ccf25c7bf6 Fix shared library bug in bag attributes
A ResTable_map entry has a name attribute, which
could be a dynamic reference if it comes from
a shared library. It was not being patched with
the correct package id.

Bug:16795890
Change-Id: Ia8df6a943269b2fefb2132c3ed74eb1997d7701b
2014-08-11 09:16:01 -07:00

23 lines
294 B
C++

#ifndef __LIB_R_H
#define __LIB_R_H
namespace lib {
namespace R {
namespace attr {
enum {
attr1 = 0x02010000, // default
};
}
namespace style {
enum {
Theme = 0x02020000, // default
};
}
} // namespace R
} // namespace lib
#endif // __LIB_R_H