Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 38d8f72e authored by Pawan Wagh's avatar Pawan Wagh
Browse files

Add method to return Zip file name

Test: m libandroidfw
Bug: 301631861
Change-Id: If6d0ddf6e3465f984209325406cfeaffc44f9d6a
parent 209c1cda
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -310,3 +310,7 @@ bool ZipFileRO::uncompressEntry(ZipEntryRO entry, int fd) const

    return true;
}

const char* ZipFileRO::getZipFileName() {
    return mFileName;
}
+2 −0
Original line number Diff line number Diff line
@@ -187,6 +187,8 @@ public:
     */
    bool uncompressEntry(ZipEntryRO entry, int fd) const;

    const char* getZipFileName();

    ~ZipFileRO();

private: