android:debuggable="true"

将会生成“gdbserver”和“gdb.setup”,单步调试NDK代码,但是这个调试信息估计只有在调试的NDK版本的代码中有效,就是NDK必须携带调试的信息,而不是普通的NDK release版本

出现错误:Avoid hardcoding the debug mode; leaving it out allows debug andrelease builds to automatically assign one

具体的意思是:避免硬性的写死在xml文件中,而是通过编译或者运行的状态来决定自动生成的版本


你可能感兴趣的:(android:debuggable="true")