| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Android Smali bytecode Debugger
1.use the baksmali to generate the apk smali code
2.enter the code directory, then execute code ./ command
3.in the vscode, open any smali file, then press F5
4.follow the tips to create a launch task json file
5.select ASD configure item
6.finally the launch.json content should be like this
{
"version": "0.2.0",
"configurations": [
{
"type": "ASD",
"request": "launch",
"name": "Smali Launch",
"packageName": "xxx.xxxxx",
"deviceId": "xxxxxxx",
"workDir": "${workspaceFolder}"
}
]
}You can use this debugger extension with other smali language server extension to valid the code browsing.
| Back | FazBrowse Home | New Git URL |