blob: 7dee585fa7bed73fadeb35759d0664dcc15c4aab [file] [log] [blame]
Adam Lesinski282e1812014-01-23 18:17:42 -08001//
2// Copyright 2006 The Android Open Source Project
3//
4// Android Asset Packaging Tool main entry point.
5//
6#include "Main.h"
7#include "Bundle.h"
8
9#include <utils/Log.h>
10#include <utils/threads.h>
11#include <utils/List.h>
12#include <utils/Errors.h>
13
Adam Lesinski4bf58102014-11-03 11:21:19 -080014#include <cstdlib>
Adam Lesinski282e1812014-01-23 18:17:42 -080015#include <getopt.h>
Adam Lesinski4bf58102014-11-03 11:21:19 -080016#include <cassert>
Adam Lesinski282e1812014-01-23 18:17:42 -080017
18using namespace android;
19
20static const char* gProgName = "aapt";
21
22/*
23 * When running under Cygwin on Windows, this will convert slash-based
24 * paths into back-slash-based ones. Otherwise the ApptAssets file comparisons
25 * fail later as they use back-slash separators under Windows.
26 *
27 * This operates in-place on the path string.
28 */
29void convertPath(char *path) {
30 if (path != NULL && OS_PATH_SEPARATOR != '/') {
31 for (; *path; path++) {
32 if (*path == '/') {
33 *path = OS_PATH_SEPARATOR;
34 }
35 }
36 }
37}
38
39/*
40 * Print usage info.
41 */
42void usage(void)
43{
44 fprintf(stderr, "Android Asset Packaging Tool\n\n");
45 fprintf(stderr, "Usage:\n");
46 fprintf(stderr,
47 " %s l[ist] [-v] [-a] file.{zip,jar,apk}\n"
48 " List contents of Zip-compatible archive.\n\n", gProgName);
49 fprintf(stderr,
50 " %s d[ump] [--values] [--include-meta-data] WHAT file.{apk} [asset [asset ...]]\n"
51 " strings Print the contents of the resource table string pool in the APK.\n"
52 " badging Print the label and icon for the app declared in APK.\n"
53 " permissions Print the permissions from the APK.\n"
54 " resources Print the resource table from the APK.\n"
55 " configurations Print the configurations in the APK.\n"
56 " xmltree Print the compiled xmls in the given assets.\n"
57 " xmlstrings Print the strings of the given compiled xml assets.\n\n", gProgName);
58 fprintf(stderr,
59 " %s p[ackage] [-d][-f][-m][-u][-v][-x][-z][-M AndroidManifest.xml] \\\n"
60 " [-0 extension [-0 extension ...]] [-g tolerance] [-j jarfile] \\\n"
61 " [--debug-mode] [--min-sdk-version VAL] [--target-sdk-version VAL] \\\n"
62 " [--app-version VAL] [--app-version-name TEXT] [--custom-package VAL] \\\n"
63 " [--rename-manifest-package PACKAGE] \\\n"
64 " [--rename-instrumentation-target-package PACKAGE] \\\n"
65 " [--utf16] [--auto-add-overlay] \\\n"
66 " [--max-res-version VAL] \\\n"
67 " [-I base-package [-I base-package ...]] \\\n"
68 " [-A asset-source-dir] [-G class-list-file] [-P public-definitions-file] \\\n"
69 " [-S resource-sources [-S resource-sources ...]] \\\n"
70 " [-F apk-file] [-J R-file-dir] \\\n"
71 " [--product product1,product2,...] \\\n"
Johan Redestig6ab7a782015-01-07 09:24:39 +010072 " [-c CONFIGS] [--preferred-density DENSITY] \\\n"
Adam Lesinskifab50872014-04-16 14:40:42 -070073 " [--split CONFIGS [--split CONFIGS]] \\\n"
Adam Lesinski833f3cc2014-06-18 15:06:01 -070074 " [--feature-of package [--feature-after package]] \\\n"
Adam Lesinski282e1812014-01-23 18:17:42 -080075 " [raw-files-dir [raw-files-dir] ...] \\\n"
76 " [--output-text-symbols DIR]\n"
77 "\n"
78 " Package the android resources. It will read assets and resources that are\n"
79 " supplied with the -M -A -S or raw-files-dir arguments. The -J -P -F and -R\n"
80 " options control which files are output.\n\n"
81 , gProgName);
82 fprintf(stderr,
83 " %s r[emove] [-v] file.{zip,jar,apk} file1 [file2 ...]\n"
84 " Delete specified files from Zip-compatible archive.\n\n",
85 gProgName);
86 fprintf(stderr,
87 " %s a[dd] [-v] file.{zip,jar,apk} file1 [file2 ...]\n"
88 " Add specified files to Zip-compatible archive.\n\n", gProgName);
89 fprintf(stderr,
90 " %s c[runch] [-v] -S resource-sources ... -C output-folder ...\n"
91 " Do PNG preprocessing on one or several resource folders\n"
92 " and store the results in the output folder.\n\n", gProgName);
93 fprintf(stderr,
94 " %s s[ingleCrunch] [-v] -i input-file -o outputfile\n"
95 " Do PNG preprocessing on a single file.\n\n", gProgName);
96 fprintf(stderr,
97 " %s v[ersion]\n"
98 " Print program version.\n\n", gProgName);
99 fprintf(stderr,
100 " Modifiers:\n"
101 " -a print Android-specific data (resources, manifest) when listing\n"
102 " -c specify which configurations to include. The default is all\n"
103 " configurations. The value of the parameter should be a comma\n"
104 " separated list of configuration values. Locales should be specified\n"
105 " as either a language or language-region pair. Some examples:\n"
106 " en\n"
107 " port,en\n"
108 " port,land,en_US\n"
Adam Lesinski282e1812014-01-23 18:17:42 -0800109 " -d one or more device assets to include, separated by commas\n"
110 " -f force overwrite of existing files\n"
111 " -g specify a pixel tolerance to force images to grayscale, default 0\n"
112 " -j specify a jar or zip file containing classes to include\n"
113 " -k junk path of file(s) added\n"
114 " -m make package directories under location specified by -J\n"
Adam Lesinski282e1812014-01-23 18:17:42 -0800115 " -u update existing packages (add new, replace older, remove deleted files)\n"
116 " -v verbose output\n"
117 " -x create extending (non-application) resource IDs\n"
118 " -z require localization of resource attributes marked with\n"
119 " localization=\"suggested\"\n"
120 " -A additional directory in which to find raw asset files\n"
121 " -G A file to output proguard options into.\n"
122 " -F specify the apk file to output\n"
123 " -I add an existing package to base include set\n"
124 " -J specify where to output R.java resource constant definitions\n"
125 " -M specify full path to AndroidManifest.xml to include in zip\n"
126 " -P specify where to output public resource definitions\n"
127 " -S directory in which to find resources. Multiple directories will be scanned\n"
128 " and the first match found (left to right) will take precedence.\n"
129 " -0 specifies an additional extension for which such files will not\n"
130 " be stored compressed in the .apk. An empty string means to not\n"
131 " compress any files at all.\n"
132 " --debug-mode\n"
133 " inserts android:debuggable=\"true\" in to the application node of the\n"
134 " manifest, making the application debuggable even on production devices.\n"
135 " --include-meta-data\n"
136 " when used with \"dump badging\" also includes meta-data tags.\n"
Igor Viarheichyka191d042014-06-02 17:16:24 -0700137 " --pseudo-localize\n"
138 " generate resources for pseudo-locales (en-XA and ar-XB).\n"
Adam Lesinski282e1812014-01-23 18:17:42 -0800139 " --min-sdk-version\n"
140 " inserts android:minSdkVersion in to manifest. If the version is 7 or\n"
141 " higher, the default encoding for resources will be in UTF-8.\n"
142 " --target-sdk-version\n"
143 " inserts android:targetSdkVersion in to manifest.\n"
144 " --max-res-version\n"
145 " ignores versioned resource directories above the given value.\n"
146 " --values\n"
147 " when used with \"dump resources\" also includes resource values.\n"
148 " --version-code\n"
149 " inserts android:versionCode in to manifest.\n"
150 " --version-name\n"
151 " inserts android:versionName in to manifest.\n"
Jeff Davidsondf08d1c2014-02-25 12:28:08 -0800152 " --replace-version\n"
153 " If --version-code and/or --version-name are specified, these\n"
154 " values will replace any value already in the manifest. By\n"
155 " default, nothing is changed if the manifest already defines\n"
156 " these attributes.\n"
Adam Lesinski282e1812014-01-23 18:17:42 -0800157 " --custom-package\n"
158 " generates R.java into a different package.\n"
159 " --extra-packages\n"
160 " generate R.java for libraries. Separate libraries with ':'.\n"
161 " --generate-dependencies\n"
162 " generate dependency files in the same directories for R.java and resource package\n"
163 " --auto-add-overlay\n"
164 " Automatically add resources that are only in overlays.\n"
Adam Lesinskifab50872014-04-16 14:40:42 -0700165 " --preferred-density\n"
166 " Specifies a preference for a particular density. Resources that do not\n"
167 " match this density and have variants that are a closer match are removed.\n"
168 " --split\n"
169 " Builds a separate split APK for the configurations listed. This can\n"
170 " be loaded alongside the base APK at runtime.\n"
Adam Lesinski833f3cc2014-06-18 15:06:01 -0700171 " --feature-of\n"
172 " Builds a split APK that is a feature of the apk specified here. Resources\n"
173 " in the base APK can be referenced from the the feature APK.\n"
174 " --feature-after\n"
175 " An app can have multiple Feature Split APKs which must be totally ordered.\n"
176 " If --feature-of is specified, this flag specifies which Feature Split APK\n"
177 " comes before this one. The first Feature Split APK should not define\n"
178 " anything here.\n"
Adam Lesinski282e1812014-01-23 18:17:42 -0800179 " --rename-manifest-package\n"
180 " Rewrite the manifest so that its package name is the package name\n"
181 " given here. Relative class names (for example .Foo) will be\n"
182 " changed to absolute names with the old package so that the code\n"
183 " does not need to change.\n"
184 " --rename-instrumentation-target-package\n"
185 " Rewrite the manifest so that all of its instrumentation\n"
186 " components target the given package. Useful when used in\n"
187 " conjunction with --rename-manifest-package to fix tests against\n"
188 " a package that has been renamed.\n"
189 " --product\n"
190 " Specifies which variant to choose for strings that have\n"
191 " product variants\n"
192 " --utf16\n"
193 " changes default encoding for resources to UTF-16. Only useful when API\n"
194 " level is set to 7 or higher where the default encoding is UTF-8.\n"
195 " --non-constant-id\n"
196 " Make the resources ID non constant. This is required to make an R java class\n"
197 " that does not contain the final value but is used to make reusable compiled\n"
198 " libraries that need to access resources.\n"
Adam Lesinskide898ff2014-01-29 18:20:45 -0800199 " --shared-lib\n"
200 " Make a shared library resource package that can be loaded by an application\n"
201 " at runtime to access the libraries resources. Implies --non-constant-id.\n"
Adam Lesinski282e1812014-01-23 18:17:42 -0800202 " --error-on-failed-insert\n"
203 " Forces aapt to return an error if it fails to insert values into the manifest\n"
204 " with --debug-mode, --min-sdk-version, --target-sdk-version --version-code\n"
205 " and --version-name.\n"
206 " Insertion typically fails if the manifest already defines the attribute.\n"
Ying Wangcd28bd32013-11-14 17:12:10 -0800207 " --error-on-missing-config-entry\n"
208 " Forces aapt to return an error if it fails to find an entry for a configuration.\n"
Adam Lesinski282e1812014-01-23 18:17:42 -0800209 " --output-text-symbols\n"
210 " Generates a text file containing the resource symbols of the R class in the\n"
211 " specified folder.\n"
212 " --ignore-assets\n"
213 " Assets to be ignored. Default pattern is:\n"
Adam Lesinski6e460562015-04-21 14:20:15 -0700214 " %s\n"
215 " --no-version-vectors\n"
216 " Do not automatically generate versioned copies of vector XML resources.\n",
Adam Lesinski282e1812014-01-23 18:17:42 -0800217 gDefaultIgnoreAssets);
218}
219
220/*
221 * Dispatch the command.
222 */
223int handleCommand(Bundle* bundle)
224{
225 //printf("--- command %d (verbose=%d force=%d):\n",
226 // bundle->getCommand(), bundle->getVerbose(), bundle->getForce());
227 //for (int i = 0; i < bundle->getFileSpecCount(); i++)
228 // printf(" %d: '%s'\n", i, bundle->getFileSpecEntry(i));
229
230 switch (bundle->getCommand()) {
231 case kCommandVersion: return doVersion(bundle);
232 case kCommandList: return doList(bundle);
233 case kCommandDump: return doDump(bundle);
234 case kCommandAdd: return doAdd(bundle);
235 case kCommandRemove: return doRemove(bundle);
236 case kCommandPackage: return doPackage(bundle);
237 case kCommandCrunch: return doCrunch(bundle);
238 case kCommandSingleCrunch: return doSingleCrunch(bundle);
Jerome Dochez6f1280c2014-09-26 10:21:21 -0700239 case kCommandDaemon: return runInDaemonMode(bundle);
Adam Lesinski282e1812014-01-23 18:17:42 -0800240 default:
241 fprintf(stderr, "%s: requested command not yet supported\n", gProgName);
242 return 1;
243 }
244}
245
246/*
247 * Parse args.
248 */
249int main(int argc, char* const argv[])
250{
251 char *prog = argv[0];
252 Bundle bundle;
253 bool wantUsage = false;
254 int result = 1; // pessimistically assume an error.
255 int tolerance = 0;
256
257 /* default to compression */
258 bundle.setCompressionMethod(ZipEntry::kCompressDeflated);
259
260 if (argc < 2) {
261 wantUsage = true;
262 goto bail;
263 }
264
265 if (argv[1][0] == 'v')
266 bundle.setCommand(kCommandVersion);
267 else if (argv[1][0] == 'd')
268 bundle.setCommand(kCommandDump);
269 else if (argv[1][0] == 'l')
270 bundle.setCommand(kCommandList);
271 else if (argv[1][0] == 'a')
272 bundle.setCommand(kCommandAdd);
273 else if (argv[1][0] == 'r')
274 bundle.setCommand(kCommandRemove);
275 else if (argv[1][0] == 'p')
276 bundle.setCommand(kCommandPackage);
277 else if (argv[1][0] == 'c')
278 bundle.setCommand(kCommandCrunch);
279 else if (argv[1][0] == 's')
280 bundle.setCommand(kCommandSingleCrunch);
Jerome Dochez6f1280c2014-09-26 10:21:21 -0700281 else if (argv[1][0] == 'm')
282 bundle.setCommand(kCommandDaemon);
Adam Lesinski282e1812014-01-23 18:17:42 -0800283 else {
284 fprintf(stderr, "ERROR: Unknown command '%s'\n", argv[1]);
285 wantUsage = true;
286 goto bail;
287 }
288 argc -= 2;
289 argv += 2;
290
291 /*
292 * Pull out flags. We support "-fv" and "-f -v".
293 */
294 while (argc && argv[0][0] == '-') {
295 /* flag(s) found */
296 const char* cp = argv[0] +1;
297
298 while (*cp != '\0') {
299 switch (*cp) {
300 case 'v':
301 bundle.setVerbose(true);
302 break;
303 case 'a':
304 bundle.setAndroidList(true);
305 break;
306 case 'c':
307 argc--;
308 argv++;
309 if (!argc) {
310 fprintf(stderr, "ERROR: No argument supplied for '-c' option\n");
311 wantUsage = true;
312 goto bail;
313 }
314 bundle.addConfigurations(argv[0]);
315 break;
316 case 'f':
317 bundle.setForce(true);
318 break;
319 case 'g':
320 argc--;
321 argv++;
322 if (!argc) {
323 fprintf(stderr, "ERROR: No argument supplied for '-g' option\n");
324 wantUsage = true;
325 goto bail;
326 }
327 tolerance = atoi(argv[0]);
328 bundle.setGrayscaleTolerance(tolerance);
329 printf("%s: Images with deviation <= %d will be forced to grayscale.\n", prog, tolerance);
330 break;
331 case 'k':
332 bundle.setJunkPath(true);
333 break;
334 case 'm':
335 bundle.setMakePackageDirs(true);
336 break;
337#if 0
338 case 'p':
339 bundle.setPseudolocalize(true);
340 break;
341#endif
342 case 'u':
343 bundle.setUpdate(true);
344 break;
345 case 'x':
346 bundle.setExtending(true);
347 break;
348 case 'z':
349 bundle.setRequireLocalization(true);
350 break;
351 case 'j':
352 argc--;
353 argv++;
354 if (!argc) {
355 fprintf(stderr, "ERROR: No argument supplied for '-j' option\n");
356 wantUsage = true;
357 goto bail;
358 }
359 convertPath(argv[0]);
360 bundle.addJarFile(argv[0]);
361 break;
362 case 'A':
363 argc--;
364 argv++;
365 if (!argc) {
366 fprintf(stderr, "ERROR: No argument supplied for '-A' option\n");
367 wantUsage = true;
368 goto bail;
369 }
370 convertPath(argv[0]);
Adam Lesinski09384302014-01-22 16:07:42 -0800371 bundle.addAssetSourceDir(argv[0]);
Adam Lesinski282e1812014-01-23 18:17:42 -0800372 break;
373 case 'G':
374 argc--;
375 argv++;
376 if (!argc) {
377 fprintf(stderr, "ERROR: No argument supplied for '-G' option\n");
378 wantUsage = true;
379 goto bail;
380 }
381 convertPath(argv[0]);
382 bundle.setProguardFile(argv[0]);
383 break;
384 case 'I':
385 argc--;
386 argv++;
387 if (!argc) {
388 fprintf(stderr, "ERROR: No argument supplied for '-I' option\n");
389 wantUsage = true;
390 goto bail;
391 }
392 convertPath(argv[0]);
393 bundle.addPackageInclude(argv[0]);
394 break;
395 case 'F':
396 argc--;
397 argv++;
398 if (!argc) {
399 fprintf(stderr, "ERROR: No argument supplied for '-F' option\n");
400 wantUsage = true;
401 goto bail;
402 }
403 convertPath(argv[0]);
404 bundle.setOutputAPKFile(argv[0]);
405 break;
406 case 'J':
407 argc--;
408 argv++;
409 if (!argc) {
410 fprintf(stderr, "ERROR: No argument supplied for '-J' option\n");
411 wantUsage = true;
412 goto bail;
413 }
414 convertPath(argv[0]);
415 bundle.setRClassDir(argv[0]);
416 break;
417 case 'M':
418 argc--;
419 argv++;
420 if (!argc) {
421 fprintf(stderr, "ERROR: No argument supplied for '-M' option\n");
422 wantUsage = true;
423 goto bail;
424 }
425 convertPath(argv[0]);
426 bundle.setAndroidManifestFile(argv[0]);
427 break;
428 case 'P':
429 argc--;
430 argv++;
431 if (!argc) {
432 fprintf(stderr, "ERROR: No argument supplied for '-P' option\n");
433 wantUsage = true;
434 goto bail;
435 }
436 convertPath(argv[0]);
437 bundle.setPublicOutputFile(argv[0]);
438 break;
439 case 'S':
440 argc--;
441 argv++;
442 if (!argc) {
443 fprintf(stderr, "ERROR: No argument supplied for '-S' option\n");
444 wantUsage = true;
445 goto bail;
446 }
447 convertPath(argv[0]);
448 bundle.addResourceSourceDir(argv[0]);
449 break;
450 case 'C':
451 argc--;
452 argv++;
453 if (!argc) {
454 fprintf(stderr, "ERROR: No argument supplied for '-C' option\n");
455 wantUsage = true;
456 goto bail;
457 }
458 convertPath(argv[0]);
459 bundle.setCrunchedOutputDir(argv[0]);
460 break;
461 case 'i':
462 argc--;
463 argv++;
464 if (!argc) {
465 fprintf(stderr, "ERROR: No argument supplied for '-i' option\n");
466 wantUsage = true;
467 goto bail;
468 }
469 convertPath(argv[0]);
470 bundle.setSingleCrunchInputFile(argv[0]);
471 break;
472 case 'o':
473 argc--;
474 argv++;
475 if (!argc) {
476 fprintf(stderr, "ERROR: No argument supplied for '-o' option\n");
477 wantUsage = true;
478 goto bail;
479 }
480 convertPath(argv[0]);
481 bundle.setSingleCrunchOutputFile(argv[0]);
482 break;
483 case '0':
484 argc--;
485 argv++;
486 if (!argc) {
487 fprintf(stderr, "ERROR: No argument supplied for '-e' option\n");
488 wantUsage = true;
489 goto bail;
490 }
491 if (argv[0][0] != 0) {
492 bundle.addNoCompressExtension(argv[0]);
493 } else {
494 bundle.setCompressionMethod(ZipEntry::kCompressStored);
495 }
496 break;
497 case '-':
498 if (strcmp(cp, "-debug-mode") == 0) {
499 bundle.setDebugMode(true);
500 } else if (strcmp(cp, "-min-sdk-version") == 0) {
501 argc--;
502 argv++;
503 if (!argc) {
504 fprintf(stderr, "ERROR: No argument supplied for '--min-sdk-version' option\n");
505 wantUsage = true;
506 goto bail;
507 }
508 bundle.setMinSdkVersion(argv[0]);
509 } else if (strcmp(cp, "-target-sdk-version") == 0) {
510 argc--;
511 argv++;
512 if (!argc) {
513 fprintf(stderr, "ERROR: No argument supplied for '--target-sdk-version' option\n");
514 wantUsage = true;
515 goto bail;
516 }
517 bundle.setTargetSdkVersion(argv[0]);
518 } else if (strcmp(cp, "-max-sdk-version") == 0) {
519 argc--;
520 argv++;
521 if (!argc) {
522 fprintf(stderr, "ERROR: No argument supplied for '--max-sdk-version' option\n");
523 wantUsage = true;
524 goto bail;
525 }
526 bundle.setMaxSdkVersion(argv[0]);
527 } else if (strcmp(cp, "-max-res-version") == 0) {
528 argc--;
529 argv++;
530 if (!argc) {
531 fprintf(stderr, "ERROR: No argument supplied for '--max-res-version' option\n");
532 wantUsage = true;
533 goto bail;
534 }
535 bundle.setMaxResVersion(argv[0]);
536 } else if (strcmp(cp, "-version-code") == 0) {
537 argc--;
538 argv++;
539 if (!argc) {
540 fprintf(stderr, "ERROR: No argument supplied for '--version-code' option\n");
541 wantUsage = true;
542 goto bail;
543 }
544 bundle.setVersionCode(argv[0]);
545 } else if (strcmp(cp, "-version-name") == 0) {
546 argc--;
547 argv++;
548 if (!argc) {
549 fprintf(stderr, "ERROR: No argument supplied for '--version-name' option\n");
550 wantUsage = true;
551 goto bail;
552 }
553 bundle.setVersionName(argv[0]);
Jeff Davidsondf08d1c2014-02-25 12:28:08 -0800554 } else if (strcmp(cp, "-replace-version") == 0) {
555 bundle.setReplaceVersion(true);
Adam Lesinski282e1812014-01-23 18:17:42 -0800556 } else if (strcmp(cp, "-values") == 0) {
557 bundle.setValues(true);
558 } else if (strcmp(cp, "-include-meta-data") == 0) {
559 bundle.setIncludeMetaData(true);
560 } else if (strcmp(cp, "-custom-package") == 0) {
561 argc--;
562 argv++;
563 if (!argc) {
564 fprintf(stderr, "ERROR: No argument supplied for '--custom-package' option\n");
565 wantUsage = true;
566 goto bail;
567 }
568 bundle.setCustomPackage(argv[0]);
569 } else if (strcmp(cp, "-extra-packages") == 0) {
570 argc--;
571 argv++;
572 if (!argc) {
573 fprintf(stderr, "ERROR: No argument supplied for '--extra-packages' option\n");
574 wantUsage = true;
575 goto bail;
576 }
577 bundle.setExtraPackages(argv[0]);
578 } else if (strcmp(cp, "-generate-dependencies") == 0) {
579 bundle.setGenDependencies(true);
580 } else if (strcmp(cp, "-utf16") == 0) {
581 bundle.setWantUTF16(true);
Adam Lesinskifab50872014-04-16 14:40:42 -0700582 } else if (strcmp(cp, "-preferred-density") == 0) {
Adam Lesinski282e1812014-01-23 18:17:42 -0800583 argc--;
584 argv++;
585 if (!argc) {
Adam Lesinskifab50872014-04-16 14:40:42 -0700586 fprintf(stderr, "ERROR: No argument supplied for '--preferred-density' option\n");
Adam Lesinski282e1812014-01-23 18:17:42 -0800587 wantUsage = true;
588 goto bail;
589 }
Adam Lesinskifab50872014-04-16 14:40:42 -0700590 bundle.setPreferredDensity(argv[0]);
591 } else if (strcmp(cp, "-split") == 0) {
592 argc--;
593 argv++;
594 if (!argc) {
595 fprintf(stderr, "ERROR: No argument supplied for '--split' option\n");
596 wantUsage = true;
597 goto bail;
598 }
599 bundle.addSplitConfigurations(argv[0]);
Adam Lesinski833f3cc2014-06-18 15:06:01 -0700600 } else if (strcmp(cp, "-feature-of") == 0) {
601 argc--;
602 argv++;
603 if (!argc) {
604 fprintf(stderr, "ERROR: No argument supplied for '--feature-of' option\n");
605 wantUsage = true;
606 goto bail;
607 }
608 bundle.setFeatureOfPackage(argv[0]);
609 } else if (strcmp(cp, "-feature-after") == 0) {
610 argc--;
611 argv++;
612 if (!argc) {
613 fprintf(stderr, "ERROR: No argument supplied for '--feature-after' option\n");
614 wantUsage = true;
615 goto bail;
616 }
617 bundle.setFeatureAfterPackage(argv[0]);
Adam Lesinski282e1812014-01-23 18:17:42 -0800618 } else if (strcmp(cp, "-rename-manifest-package") == 0) {
619 argc--;
620 argv++;
621 if (!argc) {
622 fprintf(stderr, "ERROR: No argument supplied for '--rename-manifest-package' option\n");
623 wantUsage = true;
624 goto bail;
625 }
626 bundle.setManifestPackageNameOverride(argv[0]);
627 } else if (strcmp(cp, "-rename-instrumentation-target-package") == 0) {
628 argc--;
629 argv++;
630 if (!argc) {
631 fprintf(stderr, "ERROR: No argument supplied for '--rename-instrumentation-target-package' option\n");
632 wantUsage = true;
633 goto bail;
634 }
635 bundle.setInstrumentationPackageNameOverride(argv[0]);
636 } else if (strcmp(cp, "-auto-add-overlay") == 0) {
637 bundle.setAutoAddOverlay(true);
638 } else if (strcmp(cp, "-error-on-failed-insert") == 0) {
639 bundle.setErrorOnFailedInsert(true);
Ying Wangcd28bd32013-11-14 17:12:10 -0800640 } else if (strcmp(cp, "-error-on-missing-config-entry") == 0) {
641 bundle.setErrorOnMissingConfigEntry(true);
Adam Lesinski282e1812014-01-23 18:17:42 -0800642 } else if (strcmp(cp, "-output-text-symbols") == 0) {
643 argc--;
644 argv++;
645 if (!argc) {
646 fprintf(stderr, "ERROR: No argument supplied for '-output-text-symbols' option\n");
647 wantUsage = true;
648 goto bail;
649 }
650 bundle.setOutputTextSymbols(argv[0]);
651 } else if (strcmp(cp, "-product") == 0) {
652 argc--;
653 argv++;
654 if (!argc) {
655 fprintf(stderr, "ERROR: No argument supplied for '--product' option\n");
656 wantUsage = true;
657 goto bail;
658 }
659 bundle.setProduct(argv[0]);
660 } else if (strcmp(cp, "-non-constant-id") == 0) {
661 bundle.setNonConstantId(true);
Adam Lesinskide898ff2014-01-29 18:20:45 -0800662 } else if (strcmp(cp, "-shared-lib") == 0) {
663 bundle.setNonConstantId(true);
664 bundle.setBuildSharedLibrary(true);
Adam Lesinski282e1812014-01-23 18:17:42 -0800665 } else if (strcmp(cp, "-no-crunch") == 0) {
666 bundle.setUseCrunchCache(true);
667 } else if (strcmp(cp, "-ignore-assets") == 0) {
668 argc--;
669 argv++;
670 if (!argc) {
671 fprintf(stderr, "ERROR: No argument supplied for '--ignore-assets' option\n");
672 wantUsage = true;
673 goto bail;
674 }
675 gUserIgnoreAssets = argv[0];
Igor Viarheichyka191d042014-06-02 17:16:24 -0700676 } else if (strcmp(cp, "-pseudo-localize") == 0) {
677 bundle.setPseudolocalize(PSEUDO_ACCENTED | PSEUDO_BIDI);
Adam Lesinski6e460562015-04-21 14:20:15 -0700678 } else if (strcmp(cp, "-no-version-vectors") == 0) {
679 bundle.setNoVersionVectors(true);
Adam Lesinski282e1812014-01-23 18:17:42 -0800680 } else {
681 fprintf(stderr, "ERROR: Unknown option '-%s'\n", cp);
682 wantUsage = true;
683 goto bail;
684 }
685 cp += strlen(cp) - 1;
686 break;
687 default:
688 fprintf(stderr, "ERROR: Unknown flag '-%c'\n", *cp);
689 wantUsage = true;
690 goto bail;
691 }
692
693 cp++;
694 }
695 argc--;
696 argv++;
697 }
698
699 /*
700 * We're past the flags. The rest all goes straight in.
701 */
702 bundle.setFileSpec(argv, argc);
703
704 result = handleCommand(&bundle);
705
706bail:
707 if (wantUsage) {
708 usage();
709 result = 2;
710 }
711
712 //printf("--> returning %d\n", result);
713 return result;
714}