我无法在我的android工作室中获取lint.xml而不是//noinspection
条评论。我真的不知道为什么。
我按照说明here并在我的清单旁边放了一个lint.xml
(我也尝试了项目根目录和app/
目录)。符合文档Android Studio [...] will also use this configuration file if present
,但事实并非如此。
我尝试添加gradle配置
lintOptions {
lintConfig file('lint.xml')
}
但仍然没有运气。
就//noinspection
而言,可能是由于我的android studio和lint版本。如何检查我的lint版本是否能够处理//noinspection
作为文档状态In recent versions of lint, you can also use a special line comment
。