8000 GitHub - YaxinCheng/arsc: Android resource file parsing & writing
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

YaxinCheng/arsc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

arsc

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

[dependencies]
arsc = "0.1"

Compiler support: rustc 1.59+

Example

use arsc::{parse, write};

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

Getting Started

This section talks about how to compile the project

Prerequisites:

  • Rust 1.59 or above
  • Cargo
  • Git

Compile

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

About

Android resource file parsing & writing

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •  

Languages

0