on a given NDK application. The application must be debuggable, i.e. its android:debuggable attribute must be set to 'true' in the <application> element of its manifest. See docs/NDK-GDB.TXT for usage description. Essentially, you just need to launch ndk-gdb-py from your application...
"ndk-gdb only supports devices running Android 2.2 or higher.") api_level = int(device_props["ro.build.version.sdk"]) if api_level < 8: error("ndk-gdb only supports devices running Android 2.2 or higher.\n" "(expected API level 8, actual: {})".format(api_level)) return ...