]>
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 " [--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 " [raw-files-dir [raw-files-dir] ...]\n"
72 " Package the android resources. It will read assets and resources that are\n"
73 " supplied with the -M -A -S or raw-files-dir arguments. The -J -P -F and -R\n"
74 " options control which files are output.\n\n"
77 " %s r[emove] [-v] file.{zip,jar,apk} file1 [file2 ...]\n"
78 " Delete specified files from Zip-compatible archive.\n\n",
81 " %s a[dd] [-v] file.{zip,jar,apk} file1 [file2 ...]\n"
82 " Add specified files to Zip-compatible archive.\n\n", gProgName
);
85 " Print program version.\n\n", gProgName
);
88 " -a print Android-specific data (resources, manifest) when listing\n"
89 " -c specify which configurations to include. The default is all\n"
90 " configurations. The value of the parameter should be a comma\n"
91 " separated list of configuration values. Locales should be specified\n"
92 " as either a language or language-region pair. Some examples:\n"
96 " If you put the special locale, zz_ZZ on the list, it will perform\n"
97 " pseudolocalization on the default locale, modifying all of the\n"
98 " strings so you can look for strings that missed the\n"
99 " internationalization process. For example:\n"
101 " -d one or more device assets to include, separated by commas\n"
102 " -f force overwrite of existing files\n"
103 " -g specify a pixel tolerance to force images to grayscale, default 0\n"
104 " -j specify a jar or zip file containing classes to include\n"
105 " -k junk path of file(s) added\n"
106 " -m make package directories under location specified by -J\n"
108 " -p pseudolocalize the default configuration\n"
110 " -u update existing packages (add new, replace older, remove deleted files)\n"
111 " -v verbose output\n"
112 " -x create extending (non-application) resource IDs\n"
113 " -z require localization of resource attributes marked with\n"
114 " localization=\"suggested\"\n"
115 " -A additional directory in which to find raw asset files\n"
116 " -G A file to output proguard options into.\n"
117 " -F specify the apk file to output\n"
118 " -I add an existing package to base include set\n"
119 " -J specify where to output R.java resource constant definitions\n"
120 " -M specify full path to AndroidManifest.xml to include in zip\n"
121 " -P specify where to output public resource definitions\n"
122 " -S directory in which to find resources. Multiple directories will be scanned\n"
123 " and the first match found (left to right) will take precedence.\n"
124 " -0 specifies an additional extension for which such files will not\n"
125 " be stored compressed in the .apk. An empty string means to not\n"
126 " compress any files at all.\n"
127 " --min-sdk-version\n"
128 " inserts android:minSdkVersion in to manifest. If the version is 7 or\n"
129 " higher, the default encoding for resources will be in UTF-8.\n"
130 " --target-sdk-version\n"
131 " inserts android:targetSdkVersion in to manifest.\n"
132 " --max-res-version\n"
133 " ignores versioned resource directories above the given value.\n"
135 " when used with \"dump resources\" also includes resource values.\n"
137 " inserts android:versionCode in to manifest.\n"
139 " inserts android:versionName in to manifest.\n"
140 " --custom-package\n"
141 " generates R.java into a different package.\n"
142 " --auto-add-overlay\n"
143 " Automatically add resources that are only in overlays.\n"
144 " --rename-manifest-package\n"
145 " Rewrite the manifest so that its package name is the package name\n"
146 " given here. Relative class names (for example .Foo) will be\n"
147 " changed to absolute names with the old package so that the code\n"
148 " does not need to change.\n"
149 " --rename-instrumentation-target-package\n"
150 " Rewrite the manifest so that all of its instrumentation\n"
151 " components target the given package. Useful when used in\n"
152 " conjunction with --rename-manifest-package to fix tests against\n"
153 " a package that has been renamed.\n"
155 " changes default encoding for resources to UTF-16. Only useful when API\n"
156 " level is set to 7 or higher where the default encoding is UTF-8.\n");
160 * Dispatch the command.
162 int handleCommand(Bundle
* bundle
)
164 //printf("--- command %d (verbose=%d force=%d):\n",
165 // bundle->getCommand(), bundle->getVerbose(), bundle->getForce());
166 //for (int i = 0; i < bundle->getFileSpecCount(); i++)
167 // printf(" %d: '%s'\n", i, bundle->getFileSpecEntry(i));
169 switch (bundle
->getCommand()) {
170 case kCommandVersion
: return doVersion(bundle
);
171 case kCommandList
: return doList(bundle
);
172 case kCommandDump
: return doDump(bundle
);
173 case kCommandAdd
: return doAdd(bundle
);
174 case kCommandRemove
: return doRemove(bundle
);
175 case kCommandPackage
: return doPackage(bundle
);
177 fprintf(stderr
, "%s: requested command not yet supported\n", gProgName
);
185 int main(int argc
, char* const argv
[])
187 char *prog
= argv
[0];
189 bool wantUsage
= false;
190 int result
= 1; // pessimistically assume an error.
193 /* default to compression */
194 bundle
.setCompressionMethod(ZipEntry::kCompressDeflated
);
201 if (argv
[1][0] == 'v')
202 bundle
.setCommand(kCommandVersion
);
203 else if (argv
[1][0] == 'd')
204 bundle
.setCommand(kCommandDump
);
205 else if (argv
[1][0] == 'l')
206 bundle
.setCommand(kCommandList
);
207 else if (argv
[1][0] == 'a')
208 bundle
.setCommand(kCommandAdd
);
209 else if (argv
[1][0] == 'r')
210 bundle
.setCommand(kCommandRemove
);
211 else if (argv
[1][0] == 'p')
212 bundle
.setCommand(kCommandPackage
);
214 fprintf(stderr
, "ERROR: Unknown command '%s'\n", argv
[1]);
222 * Pull out flags. We support "-fv" and "-f -v".
224 while (argc
&& argv
[0][0] == '-') {
226 const char* cp
= argv
[0] +1;
228 while (*cp
!= '\0') {
231 bundle
.setVerbose(true);
234 bundle
.setAndroidList(true);
240 fprintf(stderr
, "ERROR: No argument supplied for '-c' option\n");
244 bundle
.addConfigurations(argv
[0]);
247 bundle
.setForce(true);
253 fprintf(stderr
, "ERROR: No argument supplied for '-g' option\n");
257 tolerance
= atoi(argv
[0]);
258 bundle
.setGrayscaleTolerance(tolerance
);
259 printf("%s: Images with deviation <= %d will be forced to grayscale.\n", prog
, tolerance
);
262 bundle
.setJunkPath(true);
265 bundle
.setMakePackageDirs(true);
269 bundle
.setPseudolocalize(true);
273 bundle
.setUpdate(true);
276 bundle
.setExtending(true);
279 bundle
.setRequireLocalization(true);
285 fprintf(stderr
, "ERROR: No argument supplied for '-j' option\n");
289 convertPath(argv
[0]);
290 bundle
.addJarFile(argv
[0]);
296 fprintf(stderr
, "ERROR: No argument supplied for '-A' option\n");
300 convertPath(argv
[0]);
301 bundle
.setAssetSourceDir(argv
[0]);
307 fprintf(stderr
, "ERROR: No argument supplied for '-G' option\n");
311 convertPath(argv
[0]);
312 bundle
.setProguardFile(argv
[0]);
318 fprintf(stderr
, "ERROR: No argument supplied for '-I' option\n");
322 convertPath(argv
[0]);
323 bundle
.addPackageInclude(argv
[0]);
329 fprintf(stderr
, "ERROR: No argument supplied for '-F' option\n");
333 convertPath(argv
[0]);
334 bundle
.setOutputAPKFile(argv
[0]);
340 fprintf(stderr
, "ERROR: No argument supplied for '-J' option\n");
344 convertPath(argv
[0]);
345 bundle
.setRClassDir(argv
[0]);
351 fprintf(stderr
, "ERROR: No argument supplied for '-M' option\n");
355 convertPath(argv
[0]);
356 bundle
.setAndroidManifestFile(argv
[0]);
362 fprintf(stderr
, "ERROR: No argument supplied for '-P' option\n");
366 convertPath(argv
[0]);
367 bundle
.setPublicOutputFile(argv
[0]);
373 fprintf(stderr
, "ERROR: No argument supplied for '-S' option\n");
377 convertPath(argv
[0]);
378 bundle
.addResourceSourceDir(argv
[0]);
384 fprintf(stderr
, "ERROR: No argument supplied for '-e' option\n");
388 if (argv
[0][0] != 0) {
389 bundle
.addNoCompressExtension(argv
[0]);
391 bundle
.setCompressionMethod(ZipEntry::kCompressStored
);
395 if (strcmp(cp
, "-min-sdk-version") == 0) {
399 fprintf(stderr
, "ERROR: No argument supplied for '--min-sdk-version' option\n");
403 bundle
.setMinSdkVersion(argv
[0]);
404 } else if (strcmp(cp
, "-target-sdk-version") == 0) {
408 fprintf(stderr
, "ERROR: No argument supplied for '--target-sdk-version' option\n");
412 bundle
.setTargetSdkVersion(argv
[0]);
413 } else if (strcmp(cp
, "-max-sdk-version") == 0) {
417 fprintf(stderr
, "ERROR: No argument supplied for '--max-sdk-version' option\n");
421 bundle
.setMaxSdkVersion(argv
[0]);
422 } else if (strcmp(cp
, "-max-res-version") == 0) {
426 fprintf(stderr
, "ERROR: No argument supplied for '--max-res-version' option\n");
430 bundle
.setMaxResVersion(argv
[0]);
431 } else if (strcmp(cp
, "-version-code") == 0) {
435 fprintf(stderr
, "ERROR: No argument supplied for '--version-code' option\n");
439 bundle
.setVersionCode(argv
[0]);
440 } else if (strcmp(cp
, "-version-name") == 0) {
444 fprintf(stderr
, "ERROR: No argument supplied for '--version-name' option\n");
448 bundle
.setVersionName(argv
[0]);
449 } else if (strcmp(cp
, "-values") == 0) {
450 bundle
.setValues(true);
451 } else if (strcmp(cp
, "-custom-package") == 0) {
455 fprintf(stderr
, "ERROR: No argument supplied for '--custom-package' option\n");
459 bundle
.setCustomPackage(argv
[0]);
460 } else if (strcmp(cp
, "-utf16") == 0) {
461 bundle
.setWantUTF16(true);
462 } else if (strcmp(cp
, "-rename-manifest-package") == 0) {
466 fprintf(stderr
, "ERROR: No argument supplied for '--rename-manifest-package' option\n");
470 bundle
.setManifestPackageNameOverride(argv
[0]);
471 } else if (strcmp(cp
, "-rename-instrumentation-target-package") == 0) {
475 fprintf(stderr
, "ERROR: No argument supplied for '--rename-instrumentation-target-package' option\n");
479 bundle
.setInstrumentationPackageNameOverride(argv
[0]);
480 } else if (strcmp(cp
, "-auto-add-overlay") == 0) {
481 bundle
.setAutoAddOverlay(true);
483 fprintf(stderr
, "ERROR: Unknown option '-%s'\n", cp
);
487 cp
+= strlen(cp
) - 1;
490 fprintf(stderr
, "ERROR: Unknown flag '-%c'\n", *cp
);
502 * We're past the flags. The rest all goes straight in.
504 bundle
.setFileSpec(argv
, argc
);
506 result
= handleCommand(&bundle
);
514 //printf("--> returning %d\n", result);