shogo82148 / androidbinary

Android binary file parser written in golang
MIT License
240 stars 79 forks source link

how to replace the package file and repackage #37

Open lyb-Q opened 4 years ago

lyb-Q commented 4 years ago

how should I do

lyb-Q commented 4 years ago

I want to modify a file in the package

shogo82148 commented 4 years ago

the androidbinary package can't modify the package. this project is not a replacement of the Android build toolchain, so I have no plan to implement it. The Android build toolchain are too big and complex to port into Golang.

please consider to use the Android build toolchains directly. the aapt may help you.

Or, the apktools is useful for reverse engineering.

lyb-Q commented 4 years ago

thank you