diff options
author | MÃ¥rten Kongstad <marten.kongstad@sonyericsson.com> | 2012-02-07 19:12:45 +0100 |
---|---|---|
committer | Zoran Jovanovic <zoran.jovanovic@sonyericsson.com> | 2012-02-07 19:14:28 +0100 |
commit | c761d8b0086f9e92eb1e4b3a5683ae6afb84036a (patch) | |
tree | dfbb0ead537b70a58fc991c236a109cbca0ea685 /tools/aapt/Main.cpp | |
parent | a081c7b8bc5a3ea19fc7562b333fac525b17bc5f (diff) |
Build overlay packages just like regular packages.
Previously, building overlay packages required passing aapt its -o flag.
This commit decouples the idmap generation code from the effects of the
-o flag.
Since this commit renders the -o flag obsolete, support for the flag was
removed from aapt as well.
Change-Id: Ied2e0ab8cb800e49623f0a2044b06cd4935473d5
Diffstat (limited to 'tools/aapt/Main.cpp')
-rw-r--r-- | tools/aapt/Main.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tools/aapt/Main.cpp b/tools/aapt/Main.cpp index 50c828def46d..d5d22300a0b5 100644 --- a/tools/aapt/Main.cpp +++ b/tools/aapt/Main.cpp @@ -69,7 +69,6 @@ void usage(void) " [-F apk-file] [-J R-file-dir] \\\n" " [--product product1,product2,...] \\\n" " [-c CONFIGS] [--preferred-configurations CONFIGS] \\\n" - " [-o] \\\n" " [raw-files-dir [raw-files-dir] ...]\n" "\n" " Package the android resources. It will read assets and resources that are\n" @@ -110,7 +109,6 @@ void usage(void) " -j specify a jar or zip file containing classes to include\n" " -k junk path of file(s) added\n" " -m make package directories under location specified by -J\n" - " -o create overlay package (ie only resources; expects <overlay-package> in manifest)\n" #if 0 " -p pseudolocalize the default configuration\n" #endif @@ -292,9 +290,6 @@ int main(int argc, char* const argv[]) case 'm': bundle.setMakePackageDirs(true); break; - case 'o': - bundle.setIsOverlayPackage(true); - break; #if 0 case 'p': bundle.setPseudolocalize(true); |