gpt4 book ai didi

安卓 Lint : How to disable "NewerVersionAvailable" check for testCompile dependencies?

转载 作者:行者123 更新时间:2023-12-03 05:13:01 25 4
gpt4 key购买 nike

我正在使用 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com