Android apk decompiler

Tools Android-apktools is a tools reverse engineering 3rd party, closed, binary Android apps.

adb shell dumpsys

adb shell dumpsys adb shell dumpsys is a command that dumps interesting system state to the log.

Android JNI

JNINativeMethod struct typedef struct { const char* name; const char* signature; void* fnPtr; } JNINativeMethod; name: java function name signature: use a string description function’s parameter and return type fnPtr: a function pointer point to native function, it’s first add (void *)