summaryrefslogtreecommitdiff
path: root/libs/androidfw/ZipFileRO.cpp
diff options
context:
space:
mode:
author Pawan Wagh <waghpawan@google.com> 2024-04-11 17:13:00 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2024-04-11 17:13:00 +0000
commit114bff10acd83548446c3cb9ac6ba3a59f60db2e (patch)
treefcd64c81f1ef612d3ced84f84e968bc54f027bf2 /libs/androidfw/ZipFileRO.cpp
parent5e04e9a1c47e6bfb82386ea1de4bb100f0787151 (diff)
parent1ad068f53cc875485f027cb74d67901a871514b7 (diff)
Merge changes from topic "punch_shared_libs" into main
* changes: Adding FileSystemUtils test Punch holes in 64 bit native libs Add method to return Zip file name
Diffstat (limited to 'libs/androidfw/ZipFileRO.cpp')
-rw-r--r--libs/androidfw/ZipFileRO.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/libs/androidfw/ZipFileRO.cpp b/libs/androidfw/ZipFileRO.cpp
index 9d4b426a6759..34a6bc27b93f 100644
--- a/libs/androidfw/ZipFileRO.cpp
+++ b/libs/androidfw/ZipFileRO.cpp
@@ -310,3 +310,7 @@ bool ZipFileRO::uncompressEntry(ZipEntryRO entry, int fd) const
return true;
}
+
+const char* ZipFileRO::getZipFileName() {
+ return mFileName;
+}