qreader
qreader copied to clipboard
:white_square_button: [Android Library] Read QR codes using google's mobile vision api, but without the hassle
- Cleanup codebase for gradle config - Modularize the config files - Setup publishing to MavenCentral Fixes #69
**Do you want to request a *feature* or report a *bug*?** **What is the current behavior?** Surface View doesn't show camera preview (Or camera stops) when user locks the device...
Well, when I solved the issue [https://github.com/nisrulz/qreader/issues/29](url) I made some changed that I cosidered not an optimal implementation of this tool, so I decided trying to improved what I did...
This "issue" serves as a guest book. You're welcome to write nice things about this project, share how it's helped you out, learn something or solve a problem. Idea came...
I just copied all the codes from the sample project that is included here. `@Override` protected void onResume() { super.onResume(); qReader.initAndStart(surfaceView); }` `@Override` protected void onPause() { super.onPause(); qReader.releaseAndCleanup(); }`...
Is there any way I can use the full screen camera area to display but limit the reading area to a subview?
What do you think about features: - Use `com.google.android.gms.vision.barcode.BarcodeDetector` as singleton by default instead of creating new instance inside init() function. Do we really need different detectors in different readers?...
Currently, the sample app calls `restartActivity()` in `onPermissionGranted()` on granting the camera permission. Is it instead possible to handle this without re-inflating the `SurfaceView` or restarting the activity? Using the...
Hi. I had the RuntimeException: Fail to connect to camera service. Log: ``` java.lang.RuntimeException: Fail to connect to camera service at android.hardware.Camera.(Camera.java:545) at android.hardware.Camera.open(Camera.java:385) at com.google.android.gms.vision.CameraSource.zzbjo(Unknown Source) at com.google.android.gms.vision.CameraSource.start(Unknown Source)...