Posts Tagged ‘Debugging’

In Android Java Applications we use a logging system to record log events including errors, debugging, etc. Log levels are: Verbose 2 Debug 3 Info 4 Warn 5 Error 6 Assert 7 The default log level set by the Android OS is 4 and above. Its the reverse for the levels of detail in that [...]

Debug Tricks

Posted: November 2, 2009 in Android, Java, Mobile
Tags: ,

A debug trick Now your stacktraces and Heapdump statements are not enabled if debugging is off.

Sometimes it helps to read the fine print for example, adb: You can use the adb commands pull and push to copy files to and from an emulator/device instance’s data file. Unlike the install command, which only copies an .apk file to a specific location, the pull and push commands let you copy arbitrary directories [...]