-->

摇篮错误时尝试添加依赖于斑马线扫描仪(Gradle Error when try to add de

2019-09-27 17:17发布

我尝试添加一个依赖“me.dm7.barcodescanner:斑马线:1.9.8”为条形码扫描仪的功能。 它填充摇篮误差在给定的图像

点击

Answer 1:

这是因为这个库使用旧版本com.android.support库。

试着这样做:

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


文章来源: Gradle Error when try to add dependency for Zxing scanner