Page Properties | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||
|
...
Some invoices have a QR code that lets the user get the payment data just by scanning it from the camera screen. Scanning and processing happen automatically. The SDK utilizes the QR code scanning capability of Google ML Kit to extract payment data from QR codes, enabling the detection of payment information.
...
QR code scanning is available on devices running Android with Google Play Services installed. To enable this feature, pass true
to GiniBankGiniCapture.Builder.setCaptureConfiguration(context, CaptureConfiguration(qrCodeScanningEnabled = )setQRCodeScanningEnabled()
.
When your application is installed, Google Play Services downloads libraries to the device in order to detect QR codes. If another app already uses QR code detection on the device, the library won’t be downloaded again. Under certain circumstances (for example, the user isn't online, slow connection, or lack of sufficient storage space), the libraries aren’t ready at the time your app starts the camera screen and QR code detection is silently disabled until the next time the camera screen starts.
...