This repository has been archived by the owner on Nov 9, 2023. It is now read-only.
Releases: accrescent/apkstat
Releases · accrescent/apkstat
0.1.4
0.1.3
Changes since the last release:
- Validate application ID when parsing
0.1.2
Changes since the last release:
- Remove
apk.Close()
usage from README example since it's no longer necessary and will cause a compilation error - Bump minimum/tested Go version to 1.19
- Change all error names to start with
Err
as per Go convention
0.1.1
Changes since the last release:
- Add methods to open APKs from
io.ReaderAt
s - Incidentally remove the requirement to
Close
an APK after opening it - Fix typos in doc comments
0.1.0
apkstat is a Go library and CLI tool for parsing Android APKs. Here's some of what it can do:
- Extract Android manifest fields
- Extract fields from some well-known XML resources such as data extraction rules and network security configs
- Convert arbitrary Android binary XML to text
- Specify resource table configs to use when parsing
- Pretty print binary Android manifests and other well-known XML resources
apkstat is fast, safe, and minimal. It relies solely on the Go standard library and contains no usage of unsafe
, C
, or reflect
. Check out the README for examples or the API documentation to get started.