DDMS is good for debugging, but when you are ready to release the app, it just seems excessive that it would be sending all this signal to the user's computer when USB connected.
Is it possible to suppress output to ddms? If so, how?
|
DDMS is good for debugging, but when you are ready to release the app, it just seems excessive that it would be sending all this signal to the user's computer when USB connected. Is it possible to suppress output to ddms? If so, how? |
|||||
|
|
The following is what I do. It is probably not as elegant as what you are expecting but it works:
Then, just change the value of DEBUG_ON when you release your app. |
|||||
|
|
if you don't use proguard, you have to manage the log yourself and in the manifest file make dubuggable false
Here my custom log class
|
|||
|
|
|
Keep in mind that not everything you see in DDMS is even from your app. Behind the scenes DDMS is actually using ADT will now normally set the debuggable attribute correctly for you in your manifest, assuming you do not add it to the manifest at all. The manifest debuggable attribute controls if debugging tools (DDMS) are able to connect to your running process. An alternate approach to using compile time flags to enable or disable debugging is to use the |
|||
|
|