arsc

arsc is a Rust library that provides the ability to parse and write Android resource file (arsc)

toml [dependencies] arsc = "0.1"

Compiler support: rustc 1.59+

Example

```rust use arsc::{parse, write};

fn main() -> std::io::Result<()> { let arsc = parse("/resources.arsc")?; write(&arsc, "/output.arsc") } ```

Getting Started

This section talks about how to compile the project

Prerequisites:

Compile

bash cd SOME_DIR git clone https://github.com/YaxinCheng/arsc.git cd arsc cargo build --release