Is there any static code analysis tools for android that would pick up simple things like NullPointerExceptions from trying to access an object that might be null (without checking for it first)...

Tools like resharper on C# projects do this quite well, so I'm presuming there is similar toosl for android's java...

Mike

link|improve this question

50% accept rate
feedback

2 Answers

up vote 3 down vote accepted

It's not really android specific, it's Java specific.

Several tools I know of:

  1. PMD - official site
  2. FindBugs - official site

More complete list of tools can be found on wikipedia.

link|improve this answer
feedback

Try IntelliJ IDEA from Jetbrains (the creator of resharper). It has a lot of java code inspections like resharper and support developing Android applications.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.