sagar sompura
sagar sompura

Reputation: 1

Using Zxing Library in my aplication

I have seriously tried to find a method to integrate zxing library for my barcode scanning application and found some examples and tutorials, but they mostly concentrate on the code of integrating the project library. I have understood how to use it but my only issue is I cant seem to find a correct way to copy the new zxing library. Please can anyone guide me through which files to copy where or how to bind the project in Android Studio.

Upvotes: 0

Views: 950

Answers (1)

Amogh P
Amogh P

Reputation: 43

I believe you want to 'add' the zxing library in your Android Studio project. If you are comfortable with using Gradle, just add the below line in your app's build.gradle file under dependencies.

compile 'com.google.zxing:core:3.2.0'

Build your project and then start integrating zxing by importing the required classes.

I hope this answers your question and solves your problem.

Upvotes: 1

Related Questions