From 338698ee0d3ad187251c9c1222d28c6380a42c9c Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Tue, 13 Jul 2021 17:15:19 -0700 Subject: Move convertToResPath from libutils to aapt. Test: m libaapt Bug: 295394788 Change-Id: I3225f2cd28ff0e1c3e396d0b336e51b9a8caa1f9 --- tools/aapt/Package.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tools/aapt/Package.cpp') 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 @@ -226,7 +227,7 @@ ssize_t processAssets(Bundle* bundle, ZipFile* zip, const sp& 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; } -- cgit v1.2.3-59-g8ed1b