diff options
| author | 2011-02-28 09:51:38 -0800 | |
|---|---|---|
| committer | 2011-02-28 09:51:38 -0800 | |
| commit | ce57a7f35344e76689d30f45964d1e37b78280cb (patch) | |
| tree | 880399208681c04fb55a240b9317b65fc135c91b /tools/aapt/Main.cpp | |
| parent | e630e5f49ba15005172dceeda7299569b2d2351f (diff) | |
| parent | 6504490cde3ec5d48321d539e654d1f2072b33f9 (diff) | |
am 6504490c: am dff6b8e7: Merge "Add --non-constant-id to aapt."
* commit '6504490cde3ec5d48321d539e654d1f2072b33f9':
  GpsLocationProvider: Clean up HAL initialization/cleanup sequence
  Fixed GSM encoded network initiated position request
  Ensuring thread-safe usage of DateFormat.
  Fixing infinite loop for zero duration.
  Fix for an infinite loop while scrolling lists.
  WAPPushManager, WAP Push over SMS message handler
  Add --non-constant-id to aapt.
Diffstat (limited to 'tools/aapt/Main.cpp')
| -rw-r--r-- | tools/aapt/Main.cpp | 8 | 
1 files changed, 7 insertions, 1 deletions
diff --git a/tools/aapt/Main.cpp b/tools/aapt/Main.cpp index 739b01f40d24..266a02f25a17 100644 --- a/tools/aapt/Main.cpp +++ b/tools/aapt/Main.cpp @@ -160,7 +160,11 @@ void usage(void)          "       product variants\n"          "   --utf16\n"          "       changes default encoding for resources to UTF-16.  Only useful when API\n" -        "       level is set to 7 or higher where the default encoding is UTF-8.\n"); +        "       level is set to 7 or higher where the default encoding is UTF-8.\n" +        "   --non-constant-id\n" +        "       Make the resources ID non constant. This is required to make an R java class\n" +        "       that does not contain the final value but is used to make reusable compiled\n" +        "       libraries that need to access resources.\n");  }  /* @@ -497,6 +501,8 @@ int main(int argc, char* const argv[])                          goto bail;                      }                      bundle.setProduct(argv[0]); +                } else if (strcmp(cp, "-non-constant-id") == 0) { +                    bundle.setNonConstantId(true);                  } else {                      fprintf(stderr, "ERROR: Unknown option '-%s'\n", cp);                      wantUsage = true;  |