Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to read or decode QR Code in Android without the use of any 3rd party app?

What are the best ways to read or decode QR Code in Android without the use of any 3rd party app. Suggest me any best API or source code which can be used for integrating in my own app.

like image 573
Muhammad Asad Ali Amjad Avatar asked Aug 15 '16 06:08

Muhammad Asad Ali Amjad


1 Answers

Google has a barcode class included in the Google Play services under the namespace com.google.android.gms.vision.barcode. I'm using it myself in a production app and its just great! Its fast, robust and handles all from blurry to damaged codes.

Check out Android QR Code Reader Made Easy. This should get you up and running in no time! You can easily continue on the code base provided or equally easily integrate it in your existing project.

like image 165
Algar Avatar answered Nov 14 '22 23:11

Algar