gpt4 book ai didi

android - Phonegap 条码扫描仪纵向模式

转载 作者:行者123 更新时间:2023-11-30 01:08:29 25 4
gpt4 key购买 nike

我正在使用 phonegap 插件对 QR 码阅读器进行一些测试 https://github.com/phonegap/phonegap-plugin-barcodescanner

我将代码安装到 index.js 中

cordova.plugins.barcodeScanner.scan(
function (result) {
alert("We got a barcode not \n" +
"Result: " + result.text + "\n" +
"Format: " + result.format + "\n" +
"Cancelled: " + result.cancelled);
},
function (error) {
alert("Scanning failed: " + error);
},
{
"preferFrontCamera" : true, // iOS and Android
"showFlipCameraButton" : true, // iOS and Android
"prompt" : "Place a barcode inside the scan area", // supported on Android only
"formats" : "QR_CODE,PDF_417", // default: all but PDF_417 and RSS_EXPANDED
"orientation" : "portrait" // Android only (portrait|landscape), default unset so it rotates with the device
}
);

除此部分外,一切似乎都正常,似乎根本没有触发。我需要纵向扫描仪,但它始终处于横向模式。

{
"preferFrontCamera" : true, // iOS and Android
"showFlipCameraButton" : true, // iOS and Android
"prompt" : "Place a barcode inside the scan area", // supported on Android only
"formats" : "QR_CODE,PDF_417", // default: all but PDF_417 and RSS_EXPANDED
"orientation" : "portrait" // Android only (portrait|landscape), default unset so it rotates with the device
}

我在 Adob​​e phonegap 版本上构建应用程序,并安装在 Android 6.0.1 上有什么我遗漏或做错了什么吗?

最佳答案

我的错我没有更新 config.xml。显然 phonegap 构建使用的是旧版本的插件。

需要这条线

<plugin spec="https://github.com/phonegap/phonegap-plugin-barcodescanner#6.0.1" />
<preference name="android-build-tool" value="gradle" />

关于android - Phonegap 条码扫描仪纵向模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38691177/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com