apksig 0.2.7

Decoding the APK Signing Block
Documentation

apksig crates.io version crates.io downloads

asciicast

Usage

For rust usage, see ./tests for examples.

cargo install apksig


apksig myapp.apk

Rust features

To use apksign without dependencies, or only with useful dependencies for your use case, you can disable features.

[dependencies]
apksig = { version = "0.1", default-features = false } # you want nothing
# or
apksig = { version = "0.1", default-features = false, features = ["serde", "hash"] } # you want only some features

See ./Cargo.toml for all available features and documentation.