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.
|
|
A normal user won't notice the difference. By the way:
|
|||||||||||||
|
|
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. |
|||||||
|
|
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. |
|||
|
One good practice is to link debugging mode specifically to your unique device id. |
|||
|
|
|
@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 |
|||
|
|