Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The golden rule is to set debuggable option to off prior to releasing your Android application to the public.

What would happen if I leave (forget to turn off) this option on? I mean, how would it manifest to a user?

I tested and saw no difference.

share|improve this question

5 Answers

up vote 43 down vote accepted

how would it manifest to a user?

A normal user won't notice the difference.

By the way:

Support for a true debug build. Developers no longer need to add the android:debuggable attribute to the 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.

share|improve this answer
Are you saying that as of SDK 8.0.1 I do not need to set debuggable on/off but Eclipse plug-in will rather do it automatically? – sandalone Jan 2 '11 at 21:46
1  
Yes. Eclipse uses the android build tools in the background; thus, you won't have to explicitly add the android:debuggable attribute; also when you use the Eclipse's plugin to generate the production APK, it will remove the attribute for you. – Cristian Jan 2 '11 at 21:48
1  
How can I see if an app I transfer to a mobile device has debuggable set to on or off? I mean, how can I be sure that plugin is doing its job properly. Since long time ago I am used not to trust any action which result I can't visually verify. – sandalone Jan 2 '11 at 21:59
@sandalone this question covers the topic stackoverflow.com/questions/7085644/… – Merlin May 27 '12 at 12:30

On a standard phone with USB debugging disabled, it will allow any application to debug the App. This will effectively allow any malicious application to gain full access to the App.

See http://labs.mwrinfosecurity.com/notices/debuggable_android for a detailed description of this problem.

share|improve this answer
The linked article is an excellent technical explanation of the problem, and I think it best answers the original poster's question. Thank you. – Jeffro Dec 14 '11 at 3:14
2  
Sadly, the link is dead. Perhaps this is the same page? labs.mwrinfosecurity.com/blog/2011/07/07/… – Poldie Aug 13 '12 at 12:02

It's possible that it could slow down their mobile device, especially if you have a lot of debug statements in your application. It's also possible that a malicious user could learn more about the inner-workings of your app then you'd like them to.

Regarding the golden rule, you're absolutely right. It's a good idea to turn that off, just to be safe.

share|improve this answer
That's something I couldn't think of. It's a thing one should always consider. Thanks – sandalone Jan 2 '11 at 21:56

It's also possible that a malicious user could learn more about the inner-workings of your app then you'd like them to.

One good practice is to link debugging mode specifically to your unique device id.

share|improve this answer

@askmo: you can use some tools in the SDK to check if an APK has the debug value. Check the following link:

http://lulachronicles.blogspot.com/2011/04/how-to-check-if-apk-has-flag.html

BR,

Ignacio

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.