添加 '其他/apktool解压压缩apk.md'

This commit is contained in:
iProbe 2023-10-07 14:46:40 +08:00
parent 7e00244170
commit 05b78cf276

View file

@ -0,0 +1,10 @@
```shell
# 需要下载apktool_*.jar及脚本apktool
# https://apktool.org/docs/install
#
# 解压
apktool d xxx.apk --only-main-classes
# 压缩
apktool b xxx
```