Fix a bug in processing jarfolders in ApkBuilder

Wrong parameter has been passed to the function which resulted
in exception.
http://b/issue?id=2127927
This commit is contained in:
Piotr Gurgul
2009-09-17 19:42:01 -07:00
parent 8399a2bf6d
commit 46ec8be0cb

View File

@@ -249,7 +249,7 @@ public final class ApkBuilderImpl {
for (String file : files) {
String path = f.getAbsolutePath() + File.separator + file;
processJarFile(parameter, resourcesJars);
processJarFile(path, resourcesJars);
}
} else {
processJarFile(parameter, resourcesJars);