I try to accomplish this tutorial to learn debugging NDK apps, but when I set android:debuggable=\"true\" in AndroidManifest.xml file the following error occurs
See official doc for SDK Tools, Revision 8 (December 2010)
Support for a true debug build. Developers no longer need to add the
android:debuggableattribute to the<application>tag in the manifest — the build tools add the attribute automatically. In Eclipse/ADT, all incremental builds are assumed to be debug builds, so the tools insertandroid:debuggable="true". When exporting a signed release build, the tools do not add the attribute. In Ant, a ant debug command automatically inserts theandroid:debuggable="true"attribute, while ant release does not. Ifandroid:debuggable="true"is manually set, then ant release will actually do a debug build, rather than a release build.
Update
If you really want to disable checking for debuggable flag in Eclipse you should do next:
Screen for details: 