FindBugs:Compiler output path for module can not be null. check your module/project settings问题原因

来源:互联网 发布:网络招打字员是真的吗 编辑:程序博客网 时间:2024/04/30 19:45

可能很多人在使用Android studio 中的插件中会发现这个错误提示:Compiler output path for module can not be null. check your module/project settings。

会报这个错误是因为你工程没有make。因为Findbugs并不是针对你的源代码进行检测,而是根据编译后文件(如:class.dex)进行检测。

所以如果你的工程是刚从git或者svn clone下来的,还没有make,就会出现这个问题。

0 0