尝试为Zxing扫描仪添加依赖项时发生Gradle错误

时间:2018-10-26 06:18:31

标签: android android-studio gradle android-gradle-3.0

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

click

1 个答案:

答案 0 :(得分:1)

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

尝试执行以下操作:

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