]> git.saurik.com Git - android/aapt.git/commit
Add --non-constant-id to aapt.
authorXavier Ducrohet <xav@android.com>
Tue, 15 Feb 2011 00:58:00 +0000 (16:58 -0800)
committerXavier Ducrohet <xav@android.com>
Tue, 15 Feb 2011 01:06:19 +0000 (17:06 -0800)
commit54f200b09c1a7a5e0ea5fe5d8f0601002b6040c9
tree13aa37bbbb619fc178fe610e3584762455b228a1
parent8a12f954b0f51b8efd9dc58753f98559119d7fcd
Add --non-constant-id to aapt.

This option enbables creating resource constant in the R class
that are not actual constant, but simply static fields.

The goal is to build library projects with these types of
IDs so that the constant does not get inlined in the library
code, since the ID for the library resources only are not
the final values.

The final resource IDs, generated from the main project and
its library(ies), will have proper constant with the final
values.

This allows us to generate binary library bundle (a jar file
and associated resources) that can be distributed. Additionally,
this will let us make the library project support in Eclipse
much more robust and a better user experience overall.

Change-Id: Ibe2f08d68493fde658fc3f7606abf7446f312ad2
Bundle.h
Main.cpp
Resource.cpp