summaryrefslogtreecommitdiff
path: root/tools/aapt/Package.cpp
diff options
context:
space:
mode:
author Treehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com> 2023-08-23 21:01:35 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2023-08-23 21:01:35 +0000
commit0637b02cd6336389ea578e3bcc384a73cdd4152c (patch)
tree9b925b49fafebd3ac4c73cc2b87bfaff95ddb360 /tools/aapt/Package.cpp
parent73a013641eab4557ce133243cf8b2daccee24a79 (diff)
parent338698ee0d3ad187251c9c1222d28c6380a42c9c (diff)
Merge "Move convertToResPath from libutils to aapt." into main
Diffstat (limited to 'tools/aapt/Package.cpp')
-rw-r--r--tools/aapt/Package.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/aapt/Package.cpp b/tools/aapt/Package.cpp
index 965655b59a94..a7ff5fabf495 100644
--- a/tools/aapt/Package.cpp
+++ b/tools/aapt/Package.cpp
@@ -8,6 +8,7 @@
#include "OutputSet.h"
#include "ResourceTable.h"
#include "ResourceFilter.h"
+#include "Utils.h"
#include <androidfw/misc.h>
@@ -226,7 +227,7 @@ ssize_t processAssets(Bundle* bundle, ZipFile* zip, const sp<const OutputSet>& o
fprintf(stderr, "warning: null file being processed.\n");
} else {
String8 storagePath(entry.getPath());
- storagePath.convertToResPath();
+ convertToResPath(storagePath);
if (!processFile(bundle, zip, storagePath, entry.getFile())) {
return UNKNOWN_ERROR;
}