Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

.scan didn't work #380

Open
proyectoTsoa opened this issue Jul 4, 2022 · 1 comment
Open

.scan didn't work #380

proyectoTsoa opened this issue Jul 4, 2022 · 1 comment

Comments

@proyectoTsoa
Copy link

proyectoTsoa commented Jul 4, 2022

I try to put the same code as yours
this.qrScanner.prepare() .then((status: QRScannerStatus) => { if (status.authorized) { // camera permission was granted // start scanning const scanSub = this.qrScanner.scan().subscribe((text: string) => { console.log('Scanned something', text); this.qrScanner.hide(); // hide camera preview scanSub.unsubscribe(); // stop scanning }); } else if (status.denied) { // camera permission was permanently denied // you must use QRScanner.openSettings() method to guide the user to the settings page // then they can grant the permission from there } else { // permission was denied, but not permanently. You can ask for permission again at a later time. } }) .catch((e: any) => console.log('Error is', e)); }
but on android platform ask me about permissions, then nothing happens,
how I can run this code
I am using angular, cordova
thanks

@inthreekr
Copy link

having same problem. not working any way.

this.qrScanner.scan().subscribe((text: string) => {

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants