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