dlazaro66 / QRCodeReaderView

Modification of ZXING Barcode Scanner project for easy Android QR-Code detection and AR purposes
1.9k stars 491 forks source link

Fix for multiple decoding tasks running at once. #120

Closed Rolf-Smit closed 7 years ago

Rolf-Smit commented 7 years ago

The AsyncTask status only becomes Status.RUNNING when the scheduler actually starts executing the AsyncTask, as long as the scheduler is busy doing other things the AsyncTask status will stay Status.PENDING even though AsyncTask.execute() has been called. Hence it is needed to check for the PENDING status too.

Rolf-Smit commented 7 years ago

The CI build seems to have failed on downloading the required dependencies, @dlazaro66 you might want to check this.

dlazaro66 commented 7 years ago

@Rolf-Smit somehow the CI was messing up with dependencies, now it's fine. Thank you for taking your time doing it, and sorry for the looong delay.