v2.0.0
2.0.0 (2017-01-24)
Breaking changes
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:
- Replaced
ApkReader.readFile()
with a Promise-returningApkReader.open()
which describes it better, and we have no way of supporting the previous synchronous method with the new dependency. - Replaced
ApkReader.readManifestSync()
with a Promise-returningApkReader.readManifest()
as we have no way of supporting the synchronous method with the new dependency. - Replaced
ApkReader.readXmlSync()
with a Promise-returningApkReader.readXml()
as we have no way of supporting the synchronous method with the new dependency.