我在EvoThings中构建了一个扫描信标的移动应用程序。但是当我上传到PhoneGap Build时,该应用程序无法扫描任何内容。而Phonegap网站上没有插件。
这是我的config.xml文件。我刚刚添加了蓝牙和信标的所有插件,希望它能够正常工作。
<?xml version='1.0' encoding='utf-8'?>
<widget
id="com.sap.beaconsphonegap"
version="0.0.1"
xmlns="http://www.w3.org/ns/widgets"
xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>BeaconsPhonegap</name>
<description>
A sample Apache Cordova application that responds to the deviceready event.
</description>
<author email="dev@cordova.apache.org" href="http://cordova.io">
Apache Cordova Team
</author>
<content src="index.html" />
<plugin name="com.unarin.cordova.beacon" spec="3.2.1" source="pgb" />
<gap:plugin name="cordova-plugin-bluetoothle" source="npm" />
<plugin name="com.megster.cordova.bluetoothserial" spec="0.3.3" source="pgb" />
<plugin name="com.evothings.ble" spec="1.0.0" source="npm" />
<plugin name="com.megster.cordova.ble" spec="0.1.0" source="npm" />
<plugin name="eu.mobilion.ibeacon" spec="0.0.0" source="npm" />
<plugin name="com.michelbb.cordova.beacon" spec="3.3.0" source="npm" />
<plugin name="com.conetix.ibeacon" spec="1.0.0" source="npm" />
<plugin name="com.estimote.sdk" spec="1.1.0" source="npm" />
<plugin name="com.jkhax0r.bluetoothle" spec="1.0.1" source="npm" />
<access origin="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<platform name="android">
<allow-intent href="market:*" />
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>
有人可以告诉我这里有什么问题。
EDITOR&#39; S注意:此开发人员对 Phonegap CLI 和 Phonegap Build 的方式存在误解。阅读评论中列出的常见问题解答将解决误解。