Code analysis tools for Android
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 f开发者_运维百科or it first)...
Tools like resharper on C# projects do this quite well, so I'm presuming there is similar tools for Android's Java...
Since ADT 16 there is build-int Android Lint tool for static code analysis. http://tools.android.com/tips/lint/
It's not really android specific, it's Java specific.
Several tools I know of:
- PMD - official site
- FindBugs - official site
More complete list of tools can be found on wikipedia.
For static analysis of Android apps, you can use the following combination:
- Use DED to first decompile the apps and get the Java source files
- Use SOOT to statically analyze the Java source files obtained from the step above
Android specific:
DidFail
FlowDroid
IccTA (from the creators of FlowDroid)
Try IntelliJ IDEA from Jetbrains (the creator of resharper). It has a lot of java code inspections like resharper and support developing Android applications.
AndroidStudio is a thin layer on top of IntelliJ IDEA which zloyrobot points out has lots of inspections. The problem is that there are so many inspections that it is difficult to narrow down your queries to pick up only the really good stuff. I developed a profile for that purpose and describe how to use it here: http://superliminal.com/computing/idea_static_analysis.html
精彩评论