ERROR: Non-debuggable application installed on the target device错误解决
NDK无源码调试的时候,如果出现这个错误:
ERROR: Non-debuggable application installed on the target device.
Please re-install the debuggable version!
检查androidmanifest.xml定义debuggable=“true”,而且/data/data下面相应目录读写权限也没有问题。
需要检查程序包里面是不是Lib/armeabi下面有gdbserver这个文件,如果没有需要解包然后打包加入,或者是安装之后,push进去,注意push的版本要和ndk使用gdb匹配。
这样就解决了这个问题。
补充:综合编程 , 其他综合 ,