Add the --rename-manifest-package option to aapt.

It allows you to force override the manifest
package listed in the AndroidManifest.xml when
creating an APK file.

Change-Id: I7eac7943c4e56610b65728ae54773a273634fd9d
This commit is contained in:
Jeff Hamilton
2010-01-06 15:46:38 -06:00
parent 7188f94652
commit 2fee0ed6eb
6 changed files with 91 additions and 8 deletions

View File

@@ -25,7 +25,7 @@ void printStringPool(const ResStringPool* pool)
const size_t NS = pool->size();
for (size_t s=0; s<NS; s++) {
size_t len;
printf("String #%d: %s\n", s,
printf("String #%ld: %s\n", s,
String8(pool->stringAt(s, &len)).string());
}
}