| Crates.io | apk-info-zip |
| lib.rs | apk-info-zip |
| version | 1.0.9 |
| created_at | 2025-11-12 00:54:16.812282+00 |
| updated_at | 2025-12-07 14:43:42.434332+00 |
| description | A library for correctly unpacking APK files that use the BadPack technique |
| homepage | https://github.com/delvinru/apk-info |
| repository | https://github.com/delvinru/apk-info |
| max_upload_size | |
| id | 1928559 |
| size | 77,137 |
Implementation of a custom error-agnostic zip parser.
The main purpose of this crate is to correctly unpack archives damaged using the BadPack technique.
let zip = ZipEntry::new(input).expect("can't parser zip file");
let (data, compression_method) = zip.read("AndroidManifest.xml");