Is there an easy way to “deactivate logging” prior to releasing your app on the market?
I'm preparing to release an app on the market place, on reading the Google documentation located here it suggests the following : Deactivate any calls to Log methods in the source code. Is there an easier way than having to go through all my source files and remove each line manually? Also, why remove the logging, is it a resource hog? Janusz You can do this through proguard . In the latest SDK and tools a proguard configuration file should already exist. Christopher answered this in a similar question . The easiest way is probably to run your compiled JAR through ProGuard before deployment,