在 Android 构建 Vsts 时跳过 lint

Skip lint in Android build in Vsts

我在 VSTS 的 Git 中放置了一个 Android 项目并创建了一个构建。构建总是在 "gradlew build" 步骤停止,在日志中我看到 "Lint found errors in the project; aborting build.".

在Android studio中运行ning Analyze时能找到问题,但一直没能解决问题(相关All com.android.support libraries must use the完全相同的版本规范...示例包括 'com.android.support:animated-vector-drawable:23.4.0' 和 'com.android.support:mediarouter-v7:23.0.0')

我想 运行 现在构建以查看构建过程是否正常运行。我怎样才能(暂时)跳过 lint?我没有找到任何设置,无论是在项目文件中还是在 Vsts 构建设置中,都没有找到控制它的设置。

在应用的 build.gradle 我添加了

android { lint选项{ abortOnError 错误 } }

在此处找到解决方案 gradle build fails on lint task