Any external QR scanner device with cordova/ionic support?Cordova Barcode Scanner: keep camera onACTION_BARCODE_SERVICE_BROADCAST intent in IONIC Cordova/PhonegapIonic Creator + Cordova Barcode Scanner write : falseCamera live preview and barcode scanner in IonicIonic Cordova Health Plugin - Not working on Ionic DevAppIonic native barcode scanner camera issueIonic Barcode scanner is not dismissing in ios on denying the permissionCordova not available when testing through ionic “devApp”?Error when trying using Device plugin ionic 4
Why does the Earth have a z-component at the start of the J2000 epoch?
How can I legally visit the United States Minor Outlying Islands in the Pacific?
Why doesn't Anakin's lightsaber explode when it's chopped in half on Geonosis?
Why use null function instead of == []
Is it rude to tell recruiters I would only change jobs for a better salary?
Will it hurt my career to work as a graphic designer in a startup for beauty and skin care?
how to generate correct single and double quotes in tex
Is this a plot hole in the Lost Mine of Phandelver adventure?
What are the arguments for California’s nonpartisan blanket primaries other than giving Democrats more power?
Too many spies!
Why is the collector feedback bias popular in electret-mic preamp circuits?
Why does ffmpeg choose 10+20+20ms instead of an even 16ms for 60fps gifs?
What's the phrasal verb for carbonated drinks exploding out of the can after being shaken?
Connect neutrals together in 3-gang box (load side) with 3x 3-way switches?
Commutator subgroup of Heisenberg group.
Can I activate an iPhone without an Apple ID?
3D-Plot with an inequality condition for parameter values
Why do mean value theorems have open interval for differentiablity while closed for continuity?
How to make "plastic" sounding distored guitar
Are lithium batteries allowed in the International Space Station?
Why do legislative committees exist?
How to draw a gif with expanding circles that reveal lines connecting a non-centered point to the expanding circle using Tikz
Do native speakers use ZVE or CPU?
Is this more than a packing puzzle?
Any external QR scanner device with cordova/ionic support?
Cordova Barcode Scanner: keep camera onACTION_BARCODE_SERVICE_BROADCAST intent in IONIC Cordova/PhonegapIonic Creator + Cordova Barcode Scanner write : falseCamera live preview and barcode scanner in IonicIonic Cordova Health Plugin - Not working on Ionic DevAppIonic native barcode scanner camera issueIonic Barcode scanner is not dismissing in ios on denying the permissionCordova not available when testing through ionic “devApp”?Error when trying using Device plugin ionic 4
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I am using using ionic framework to build a QR reading app. I would like to use an external QR code scanner that can connect to the app either through bluetooth or through usb(android) and be able to read the scanned QR on the app.
Are there any QR scanner device in support with cordova/ionic support?
I have tried searching in google, but didn't find anything regarding QR scanner external device
QR scanner plugin: https://ionicframework.com/docs/native/qr-scanner
but doesn't seem to have any support for external QR scanner device
import QRScanner, QRScannerStatus from '@ionic-native/qr-
scanner/ngx';
constructor(private qrScanner: QRScanner)
...
// Optionally request the permission early
this.qrScanner.prepare()
.then((status: QRScannerStatus) =>
if (status.authorized)
// camera permission was granted
// start scanning
let 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));
If someone could recommend any QR scanner device that supports the above process that would be great! thanks in advance!
ionic-framework cordova-plugins ionic4
add a comment |
I am using using ionic framework to build a QR reading app. I would like to use an external QR code scanner that can connect to the app either through bluetooth or through usb(android) and be able to read the scanned QR on the app.
Are there any QR scanner device in support with cordova/ionic support?
I have tried searching in google, but didn't find anything regarding QR scanner external device
QR scanner plugin: https://ionicframework.com/docs/native/qr-scanner
but doesn't seem to have any support for external QR scanner device
import QRScanner, QRScannerStatus from '@ionic-native/qr-
scanner/ngx';
constructor(private qrScanner: QRScanner)
...
// Optionally request the permission early
this.qrScanner.prepare()
.then((status: QRScannerStatus) =>
if (status.authorized)
// camera permission was granted
// start scanning
let 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));
If someone could recommend any QR scanner device that supports the above process that would be great! thanks in advance!
ionic-framework cordova-plugins ionic4
add a comment |
I am using using ionic framework to build a QR reading app. I would like to use an external QR code scanner that can connect to the app either through bluetooth or through usb(android) and be able to read the scanned QR on the app.
Are there any QR scanner device in support with cordova/ionic support?
I have tried searching in google, but didn't find anything regarding QR scanner external device
QR scanner plugin: https://ionicframework.com/docs/native/qr-scanner
but doesn't seem to have any support for external QR scanner device
import QRScanner, QRScannerStatus from '@ionic-native/qr-
scanner/ngx';
constructor(private qrScanner: QRScanner)
...
// Optionally request the permission early
this.qrScanner.prepare()
.then((status: QRScannerStatus) =>
if (status.authorized)
// camera permission was granted
// start scanning
let 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));
If someone could recommend any QR scanner device that supports the above process that would be great! thanks in advance!
ionic-framework cordova-plugins ionic4
I am using using ionic framework to build a QR reading app. I would like to use an external QR code scanner that can connect to the app either through bluetooth or through usb(android) and be able to read the scanned QR on the app.
Are there any QR scanner device in support with cordova/ionic support?
I have tried searching in google, but didn't find anything regarding QR scanner external device
QR scanner plugin: https://ionicframework.com/docs/native/qr-scanner
but doesn't seem to have any support for external QR scanner device
import QRScanner, QRScannerStatus from '@ionic-native/qr-
scanner/ngx';
constructor(private qrScanner: QRScanner)
...
// Optionally request the permission early
this.qrScanner.prepare()
.then((status: QRScannerStatus) =>
if (status.authorized)
// camera permission was granted
// start scanning
let 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));
If someone could recommend any QR scanner device that supports the above process that would be great! thanks in advance!
ionic-framework cordova-plugins ionic4
ionic-framework cordova-plugins ionic4
asked Mar 26 at 6:27
mikemike
1441 silver badge9 bronze badges
1441 silver badge9 bronze badges
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55350989%2fany-external-qr-scanner-device-with-cordova-ionic-support%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55350989%2fany-external-qr-scanner-device-with-cordova-ionic-support%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown