本文介绍了尝试为Zxing扫描仪添加依赖项时发生Gradle错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我尝试为条形码扫描器功能添加一个依赖项"me.dm7.barcodescanner:zxing:1.9.8".填充图像中给出的Gradle错误

I tried to add a dependency "me.dm7.barcodescanner:zxing:1.9.8" for the barcode scanner functionality. It populates Gradle error as given in image

单击

推荐答案

之所以会发生这种情况,是因为该库使用的是旧版本的 com.android.support 库.

This happens because this library uses the old version com.android.support libs.

尝试执行此操作:

implementation ("me.dm7.barcodescanner:zxing:1.9.8") {
    exclude group: "com.android.support"
}

这篇关于尝试为Zxing扫描仪添加依赖项时发生Gradle错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-29 10:47
查看更多