1

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

click

S Mugunthan kumar
  • 177
  • 1
  • 2
  • 11

1 Answers1

1

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

Try do this:

implementation ("me.dm7.barcodescanner:zxing:1.9.8") {
    exclude group: "com.android.support"
}
punchman
  • 1,350
  • 1
  • 13
  • 23