SMALI 动态调试
2024年12月23日小于 1 分钟
SMALI 动态调试
安卓调试 APK(Smali)
- 修改 androikdmanifest
<application
// 支持debug
android:debuggable="true"
- 开启调试 APP
adb shell am start -D -n com.deelmind.main.ctf/.MainActivity
- 端口转发
adb shell ps | findstr com.deelmind.main.ctf
adb forward tcp:5005 jdwp:pid

思 维 教程: