adbkit-apkreader
Advanced tools
Changelog
2.0.0 (2017-01-24)
It was discovered that our previous Zip parser, adm-zip, could not handle all valid Zip formats. We've therefore switched to yauzl which provides an asynchronous interface. Therefore the following breaking API changes were required:
ApkReader.readFile()
with a Promise-returning ApkReader.open()
which describes it better, and we have no way of supporting the previous synchronous method with the new dependency.ApkReader.readManifestSync()
with a Promise-returning ApkReader.readManifest()
as we have no way of supporting the synchronous method with the new dependency.ApkReader.readXmlSync()
with a Promise-returning ApkReader.readXml()
as we have no way of supporting the synchronous method with the new dependency.