Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tools that can help in code checking in Android

Is there any good tools or Eclipse Plugins that would scan my Android Project and identify possible 'Memory leaks', susceptible code for 'Force closes' and other general code standards of Java and/or Android.

like image 524
Brighton Vino Avatar asked Feb 20 '23 03:02

Brighton Vino


1 Answers

One good tool is the "LINT" Tool Available in Eclipse + Android-SDK.

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

Another good find was "FindBugs" that locates Java Bugs and suggests enhancements.

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

Is there any other tool that you'd suggest ?

like image 138
Brighton Vino Avatar answered Mar 03 '23 17:03

Brighton Vino