summaryrefslogtreecommitdiff
path: root/tools/aapt/Resource.cpp
diff options
context:
space:
mode:
author Adrian Roos <roosa@google.com> 2015-06-02 19:52:31 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2015-06-02 19:52:32 +0000
commit1ea14d6696dafce9b7487eb850346a124a9c977c (patch)
treeba6256c6fe3b49b20299dbe5d1fb5e2b25edacc9 /tools/aapt/Resource.cpp
parentda3f63ffb87397943546a7c5c893ce98f2489df2 (diff)
parent5892248580859620db90d5ef2e3c2f48531933fa (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.cpp2
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;
}