]>
git.saurik.com Git - android/aapt.git/blob - Main.cpp
2 // Copyright 2006 The Android Open Source Project
4 // Android Asset Packaging Tool main entry point.
10 #include <utils/threads.h>
11 #include <utils/List.h>
12 #include <utils/Errors.h>
18 using namespace android
;
20 static const char* gProgName
= "aapt";
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.
27 * This operates in-place on the path string.
29 void convertPath(char *path
) {
30 if (path
!= NULL
&& OS_PATH_SEPARATOR
!= '/') {
31 for (; *path
; path
++) {
33 *path
= OS_PATH_SEPARATOR
;
44 fprintf(stderr
, "Android Asset Packaging Tool\n\n");
45 fprintf(stderr
, "Usage:\n");
47 " %s l[ist] [-v] [-a] file.{zip,jar,apk}\n"
48 " List contents of Zip-compatible archive.\n\n", gProgName
);
50 " %s d[ump] [--values] WHAT file.{apk} [asset [asset ...]]\n"
51 " badging Print the label and icon for the app declared in APK.\n"
52 " permissions Print the permissions from the APK.\n"
53 " resources Print the resource table from the APK.\n"
54 " configurations Print the configurations in the APK.\n"
55 " xmltree Print the compiled xmls in the given assets.\n"
56 " xmlstrings Print the strings of the given compiled xml assets.\n\n", gProgName
);
58 " %s p[ackage] [-d][-f][-m][-u][-v][-x][-z][-M AndroidManifest.xml] \\\n"
59 " [-0 extension [-0 extension ...]] [-g tolerance] [-j jarfile] \\\n"
60 " [--debug-mode] [--min-sdk-version VAL] [--target-sdk-version VAL] \\\n"
61 " [--app-version VAL] [--app-version-name TEXT] [--custom-package VAL] \\\n"
62 " [--rename-manifest-package PACKAGE] \\\n"
63 " [--rename-instrumentation-target-package PACKAGE] \\\n"
64 " [--utf16] [--auto-add-overlay] \\\n"
65 " [--max-res-version VAL] \\\n"
66 " [-I base-package [-I base-package ...]] \\\n"
67 " [-A asset-source-dir] [-G class-list-file] [-P public-definitions-file] \\\n"
68 " [-S resource-sources [-S resource-sources ...]] "
69 " [-F apk-file] [-J R-file-dir] \\\n"
70 " [--product product1,product2,...] \\\n"
72 " [raw-files-dir [raw-files-dir] ...]\n"
74 " Package the android resources. It will read assets and resources that are\n"
75 " supplied with the -M -A -S or raw-files-dir arguments. The -J -P -F and -R\n"
76 " options control which files are output.\n\n"
79 " %s r[emove] [-v] file.{zip,jar,apk} file1 [file2 ...]\n"
80 " Delete specified files from Zip-compatible archive.\n\n",
83 " %s a[dd] [-v] file.{zip,jar,apk} file1 [file2 ...]\n"
84 " Add specified files to Zip-compatible archive.\n\n", gProgName
);
87 " Print program version.\n\n", gProgName
);
90 " -a print Android-specific data (resources, manifest) when listing\n"
91 " -c specify which configurations to include. The default is all\n"
92 " configurations. The value of the parameter should be a comma\n"
93 " separated list of configuration values. Locales should be specified\n"
94 " as either a language or language-region pair. Some examples:\n"
98 " If you put the special locale, zz_ZZ on the list, it will perform\n"
99 " pseudolocalization on the default locale, modifying all of the\n"
100 " strings so you can look for strings that missed the\n"
101 " internationalization process. For example:\n"
103 " -d one or more device assets to include, separated by commas\n"
104 " -f force overwrite of existing files\n"
105 " -g specify a pixel tolerance to force images to grayscale, default 0\n"
106 " -j specify a jar or zip file containing classes to include\n"
107 " -k junk path of file(s) added\n"
108 " -m make package directories under location specified by -J\n"
109 " -o create overlay package (ie only resources; expects <overlay-package> in manifest)\n"
111 " -p pseudolocalize the default configuration\n"
113 " -u update existing packages (add new, replace older, remove deleted files)\n"
114 " -v verbose output\n"
115 " -x create extending (non-application) resource IDs\n"
116 " -z require localization of resource attributes marked with\n"
117 " localization=\"suggested\"\n"
118 " -A additional directory in which to find raw asset files\n"
119 " -G A file to output proguard options into.\n"
120 " -F specify the apk file to output\n"
121 " -I add an existing package to base include set\n"
122 " -J specify where to output R.java resource constant definitions\n"
123 " -M specify full path to AndroidManifest.xml to include in zip\n"
124 " -P specify where to output public resource definitions\n"
125 " -S directory in which to find resources. Multiple directories will be scanned\n"
126 " and the first match found (left to right) will take precedence.\n"
127 " -0 specifies an additional extension for which such files will not\n"
128 " be stored compressed in the .apk. An empty string means to not\n"
129 " compress any files at all.\n"
131 " inserts android:debuggable=\"true\" in to the application node of the\n"
132 " manifest, making the application debuggable even on production devices.\n"
133 " --min-sdk-version\n"
134 " inserts android:minSdkVersion in to manifest. If the version is 7 or\n"
135 " higher, the default encoding for resources will be in UTF-8.\n"
136 " --target-sdk-version\n"
137 " inserts android:targetSdkVersion in to manifest.\n"
138 " --max-res-version\n"
139 " ignores versioned resource directories above the given value.\n"
141 " when used with \"dump resources\" also includes resource values.\n"
143 " inserts android:versionCode in to manifest.\n"
145 " inserts android:versionName in to manifest.\n"
146 " --custom-package\n"
147 " generates R.java into a different package.\n"
148 " --extra-packages\n"
149 " generate R.java for libraries. Separate libraries with ':'.\n"
150 " --generate-dependencies\n"
151 " generate a dependency file for R.java.\n"
152 " --auto-add-overlay\n"
153 " Automatically add resources that are only in overlays.\n"
154 " --rename-manifest-package\n"
155 " Rewrite the manifest so that its package name is the package name\n"
156 " given here. Relative class names (for example .Foo) will be\n"
157 " changed to absolute names with the old package so that the code\n"
158 " does not need to change.\n"
159 " --rename-instrumentation-target-package\n"
160 " Rewrite the manifest so that all of its instrumentation\n"
161 " components target the given package. Useful when used in\n"
162 " conjunction with --rename-manifest-package to fix tests against\n"
163 " a package that has been renamed.\n"
165 " Specifies which variant to choose for strings that have\n"
166 " product variants\n"
168 " changes default encoding for resources to UTF-16. Only useful when API\n"
169 " level is set to 7 or higher where the default encoding is UTF-8.\n"
170 " --non-constant-id\n"
171 " Make the resources ID non constant. This is required to make an R java class\n"
172 " that does not contain the final value but is used to make reusable compiled\n"
173 " libraries that need to access resources.\n");
177 * Dispatch the command.
179 int handleCommand(Bundle
* bundle
)
181 //printf("--- command %d (verbose=%d force=%d):\n",
182 // bundle->getCommand(), bundle->getVerbose(), bundle->getForce());
183 //for (int i = 0; i < bundle->getFileSpecCount(); i++)
184 // printf(" %d: '%s'\n", i, bundle->getFileSpecEntry(i));
186 switch (bundle
->getCommand()) {
187 case kCommandVersion
: return doVersion(bundle
);
188 case kCommandList
: return doList(bundle
);
189 case kCommandDump
: return doDump(bundle
);
190 case kCommandAdd
: return doAdd(bundle
);
191 case kCommandRemove
: return doRemove(bundle
);
192 case kCommandPackage
: return doPackage(bundle
);
194 fprintf(stderr
, "%s: requested command not yet supported\n", gProgName
);
202 int main(int argc
, char* const argv
[])
204 char *prog
= argv
[0];
206 bool wantUsage
= false;
207 int result
= 1; // pessimistically assume an error.
210 /* default to compression */
211 bundle
.setCompressionMethod(ZipEntry::kCompressDeflated
);
218 if (argv
[1][0] == 'v')
219 bundle
.setCommand(kCommandVersion
);
220 else if (argv
[1][0] == 'd')
221 bundle
.setCommand(kCommandDump
);
222 else if (argv
[1][0] == 'l')
223 bundle
.setCommand(kCommandList
);
224 else if (argv
[1][0] == 'a')
225 bundle
.setCommand(kCommandAdd
);
226 else if (argv
[1][0] == 'r')
227 bundle
.setCommand(kCommandRemove
);
228 else if (argv
[1][0] == 'p')
229 bundle
.setCommand(kCommandPackage
);
231 fprintf(stderr
, "ERROR: Unknown command '%s'\n", argv
[1]);
239 * Pull out flags. We support "-fv" and "-f -v".
241 while (argc
&& argv
[0][0] == '-') {
243 const char* cp
= argv
[0] +1;
245 while (*cp
!= '\0') {
248 bundle
.setVerbose(true);
251 bundle
.setAndroidList(true);
257 fprintf(stderr
, "ERROR: No argument supplied for '-c' option\n");
261 bundle
.addConfigurations(argv
[0]);
264 bundle
.setForce(true);
270 fprintf(stderr
, "ERROR: No argument supplied for '-g' option\n");
274 tolerance
= atoi(argv
[0]);
275 bundle
.setGrayscaleTolerance(tolerance
);
276 printf("%s: Images with deviation <= %d will be forced to grayscale.\n", prog
, tolerance
);
279 bundle
.setJunkPath(true);
282 bundle
.setMakePackageDirs(true);
285 bundle
.setIsOverlayPackage(true);
289 bundle
.setPseudolocalize(true);
293 bundle
.setUpdate(true);
296 bundle
.setExtending(true);
299 bundle
.setRequireLocalization(true);
305 fprintf(stderr
, "ERROR: No argument supplied for '-j' option\n");
309 convertPath(argv
[0]);
310 bundle
.addJarFile(argv
[0]);
316 fprintf(stderr
, "ERROR: No argument supplied for '-A' option\n");
320 convertPath(argv
[0]);
321 bundle
.setAssetSourceDir(argv
[0]);
327 fprintf(stderr
, "ERROR: No argument supplied for '-G' option\n");
331 convertPath(argv
[0]);
332 bundle
.setProguardFile(argv
[0]);
338 fprintf(stderr
, "ERROR: No argument supplied for '-I' option\n");
342 convertPath(argv
[0]);
343 bundle
.addPackageInclude(argv
[0]);
349 fprintf(stderr
, "ERROR: No argument supplied for '-F' option\n");
353 convertPath(argv
[0]);
354 bundle
.setOutputAPKFile(argv
[0]);
360 fprintf(stderr
, "ERROR: No argument supplied for '-J' option\n");
364 convertPath(argv
[0]);
365 bundle
.setRClassDir(argv
[0]);
371 fprintf(stderr
, "ERROR: No argument supplied for '-M' option\n");
375 convertPath(argv
[0]);
376 bundle
.setAndroidManifestFile(argv
[0]);
382 fprintf(stderr
, "ERROR: No argument supplied for '-P' option\n");
386 convertPath(argv
[0]);
387 bundle
.setPublicOutputFile(argv
[0]);
393 fprintf(stderr
, "ERROR: No argument supplied for '-S' option\n");
397 convertPath(argv
[0]);
398 bundle
.addResourceSourceDir(argv
[0]);
404 fprintf(stderr
, "ERROR: No argument supplied for '-e' option\n");
408 if (argv
[0][0] != 0) {
409 bundle
.addNoCompressExtension(argv
[0]);
411 bundle
.setCompressionMethod(ZipEntry::kCompressStored
);
415 if (strcmp(cp
, "-debug-mode") == 0) {
416 bundle
.setDebugMode(true);
417 } else if (strcmp(cp
, "-min-sdk-version") == 0) {
421 fprintf(stderr
, "ERROR: No argument supplied for '--min-sdk-version' option\n");
425 bundle
.setMinSdkVersion(argv
[0]);
426 } else if (strcmp(cp
, "-target-sdk-version") == 0) {
430 fprintf(stderr
, "ERROR: No argument supplied for '--target-sdk-version' option\n");
434 bundle
.setTargetSdkVersion(argv
[0]);
435 } else if (strcmp(cp
, "-max-sdk-version") == 0) {
439 fprintf(stderr
, "ERROR: No argument supplied for '--max-sdk-version' option\n");
443 bundle
.setMaxSdkVersion(argv
[0]);
444 } else if (strcmp(cp
, "-max-res-version") == 0) {
448 fprintf(stderr
, "ERROR: No argument supplied for '--max-res-version' option\n");
452 bundle
.setMaxResVersion(argv
[0]);
453 } else if (strcmp(cp
, "-version-code") == 0) {
457 fprintf(stderr
, "ERROR: No argument supplied for '--version-code' option\n");
461 bundle
.setVersionCode(argv
[0]);
462 } else if (strcmp(cp
, "-version-name") == 0) {
466 fprintf(stderr
, "ERROR: No argument supplied for '--version-name' option\n");
470 bundle
.setVersionName(argv
[0]);
471 } else if (strcmp(cp
, "-values") == 0) {
472 bundle
.setValues(true);
473 } else if (strcmp(cp
, "-custom-package") == 0) {
477 fprintf(stderr
, "ERROR: No argument supplied for '--custom-package' option\n");
481 bundle
.setCustomPackage(argv
[0]);
482 } else if (strcmp(cp
, "-extra-packages") == 0) {
486 fprintf(stderr
, "ERROR: No argument supplied for '--extra-packages' option\n");
490 bundle
.setExtraPackages(argv
[0]);
491 } else if (strcmp(cp
, "-generate-dependencies") == 0) {
492 bundle
.setGenDependencies(true);
493 } else if (strcmp(cp
, "-utf16") == 0) {
494 bundle
.setWantUTF16(true);
495 } else if (strcmp(cp
, "-rename-manifest-package") == 0) {
499 fprintf(stderr
, "ERROR: No argument supplied for '--rename-manifest-package' option\n");
503 bundle
.setManifestPackageNameOverride(argv
[0]);
504 } else if (strcmp(cp
, "-rename-instrumentation-target-package") == 0) {
508 fprintf(stderr
, "ERROR: No argument supplied for '--rename-instrumentation-target-package' option\n");
512 bundle
.setInstrumentationPackageNameOverride(argv
[0]);
513 } else if (strcmp(cp
, "-auto-add-overlay") == 0) {
514 bundle
.setAutoAddOverlay(true);
515 } else if (strcmp(cp
, "-product") == 0) {
519 fprintf(stderr
, "ERROR: No argument supplied for '--product' option\n");
523 bundle
.setProduct(argv
[0]);
524 } else if (strcmp(cp
, "-non-constant-id") == 0) {
525 bundle
.setNonConstantId(true);
527 fprintf(stderr
, "ERROR: Unknown option '-%s'\n", cp
);
531 cp
+= strlen(cp
) - 1;
534 fprintf(stderr
, "ERROR: Unknown flag '-%c'\n", *cp
);
546 * We're past the flags. The rest all goes straight in.
548 bundle
.setFileSpec(argv
, argc
);
550 result
= handleCommand(&bundle
);
558 //printf("--> returning %d\n", result);