开发者

Code analysis tools for Android

开发者 https://www.devze.com 2023-03-16 04:35 出处:网络
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

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:

  1. PMD - official site
  2. 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:

  1. Use DED to first decompile the apps and get the Java source files
  2. 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

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号