Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can not set debuggable flag in AndroidManifest.xml

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:

Avoid hardcoding the debug mode; leaving it out allows debug and release builds to automatically assign one

How to solve it to be able to debug Teapot app?

like image 846
Narek Avatar asked Jun 02 '14 02:06

Narek


1 Answers

See official doc for SDK Tools, Revision 8 (December 2010)

Support for a true debug build. Developers no longer need to add the android:debuggable attribute 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 insert android:debuggable="true". When exporting a signed release build, the tools do not add the attribute. In Ant, a ant debug command automatically inserts the android:debuggable="true" attribute, while ant release does not. If android: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:

  1. Go to the Project Preferences:
  2. Select Android Lint Preferences
  3. Find HardcodedDebugMode Id in Security section and select it
  4. Change the value of Severity to Warning for example.
  5. Apply and Ok.

Screen for details: enter image description here

like image 75
Igor Tyulkanov Avatar answered Oct 23 '22 08:10

Igor Tyulkanov