7 lines
188 B
Bash
Executable File
7 lines
188 B
Bash
Executable File
#!/bin/bash
|
|
|
|
aapt package -x -M AndroidManifest.xml -S res -F bundle.apk -f && \
|
|
unzip bundle.apk resources.arsc && \
|
|
mv resources.arsc system.arsc && \
|
|
xxd -i system.arsc > system_arsc.h
|