Skip to content

Instantly share code, notes, and snippets.

View kckustomac's full-sized avatar
🌴
On vacation

kcKustoMac kckustomac

🌴
On vacation
View GitHub Profile
@kckustomac
kckustomac / android_gdb.md
Created December 14, 2024 10:18 — forked from sekkr1/android_gdb.md
Attaching GDB to Android apps' native libraries

How to GDB android native libraries

[1] Install NDK from android studio

[2] Push appropriate gdb-server to phone

adb push ~/android-sdk-linux/ndk-bundle/prebuilt/android-<arch>/gdbserver/gdbserver /data/local/tmp
adb shell "chmod 777 /data/local/tmp/gdbserver"
adb shell "ls -l /data/local/tmp/gdbserver"

[4] Forward ports

adb forward tcp:1337 tcp:1337