Java – Tools that facilitate code inspection in Android

Tools that facilitate code inspection in Android… here is a solution to the problem.

Tools that facilitate code inspection in Android

Are there any good tools or Eclipse plugins that can scan my Android projects and identify vulnerable code for possible “memory leaks”, “force shutdowns”, and other common code standards for Java and/or Android.

Solution

A good tool is the “LINT” tool available in Eclipse + Android-SDK.

http://tools.android.com/tips/lint

Another nice finding is “FindBugs”, which locates Java bugs and suggests improvements.

http://findbugs.sourceforge.net/
http://findbugs.cs.umd.edu/eclipse/

Do you have any other suggestions?

Related Problems and Solutions