作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 NewerVersionAvailable
lint 检查以确定较新的依赖项版本。但看起来这个检查只对 implementation
有用。依赖关系。我认为我们不需要更新 junit
很快。如何禁用此检查单独的依赖类型?加个//noinspection
好无聊给每个testImplementation
依赖。给出的例子:
dependencies {
// should warn
implementation 'com.android.support:support-annotations:25.0.0'
// shouldn't warn
testImplementation 'junit:junit:4.12'
}
最佳答案
最好禁用对单个依赖项的检查,因为这样仍然会通知任何进一步过时的库:
<issue id="NewerVersionAvailable">
<ignore regexp="junit:junit*"/>
</issue>
使用这样的模式:
junit:junit*
可以忽略单个依赖项 - 并且可以使用以下模式忽略整个依赖组:
junit:*
.
//noinspection GradleDependency
, 因为
lint
和 IDE 的代码检查不是一回事。
关于安卓 Lint : How to disable "NewerVersionAvailable" check for testCompile dependencies?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40464637/
我是一名优秀的程序员,十分优秀!