X-Git-Url: https://git.saurik.com/android/aapt.git/blobdiff_plain/681e0c62435715da0dde10840e2fce4ebed23aed..12ab65f6432a84bd6a3ba3232471c9fcd50e0ba9:/Main.cpp?ds=sidebyside diff --git a/Main.cpp b/Main.cpp index e61010c..98286c0 100644 --- a/Main.cpp +++ b/Main.cpp @@ -99,6 +99,7 @@ void usage(void) " -f force overwrite of existing files\n" " -g specify a pixel tolerance to force images to grayscale, default 0\n" " -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" #if 0 " -p pseudolocalize the default configuration\n" @@ -236,6 +237,9 @@ int main(int argc, char* const argv[]) bundle.setGrayscaleTolerance(tolerance); printf("%s: Images with deviation <= %d will be forced to grayscale.\n", prog, tolerance); break; + case 'k': + bundle.setJunkPath(true); + break; case 'm': bundle.setMakePackageDirs(true); break;