diff options
| author | 2015-06-02 19:52:31 +0000 | |
|---|---|---|
| committer | 2015-06-02 19:52:32 +0000 | |
| commit | 1ea14d6696dafce9b7487eb850346a124a9c977c (patch) | |
| tree | ba6256c6fe3b49b20299dbe5d1fb5e2b25edacc9 /tools/aapt/Resource.cpp | |
| parent | da3f63ffb87397943546a7c5c893ce98f2489df2 (diff) | |
| parent | 5892248580859620db90d5ef2e3c2f48531933fa (diff) | |
Merge "aapt: add option for stricter symbol generation" into mnc-dev
Diffstat (limited to 'tools/aapt/Resource.cpp')
| -rw-r--r-- | tools/aapt/Resource.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/tools/aapt/Resource.cpp b/tools/aapt/Resource.cpp index beb94fdbcfc5..5d208152e084 100644 --- a/tools/aapt/Resource.cpp +++ b/tools/aapt/Resource.cpp @@ -1604,7 +1604,7 @@ status_t buildResources(Bundle* bundle, const sp<AaptAssets>& assets, sp<ApkBuil      if (table.hasResources()) {          sp<AaptSymbols> symbols = assets->getSymbolsFor(String8("R")); -        err = table.addSymbols(symbols); +        err = table.addSymbols(symbols, bundle->getSkipSymbolsWithoutDefaultLocalization());          if (err < NO_ERROR) {              return err;          } |