cordova-plugin-altbeacon-marking
Version:
Provides Cordova-based applications the ability to emit AltBeacon beacon.
26 lines (24 loc) • 1.26 kB
text/xml
<plugin id="cordova-plugin-altbeacon-marking" version="0.0.5"
xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<name>cordova-plugin-altbeacon-marking</name>
<js-module name="BLETransmitter" src="www/cordova-plugin-altbeacon-marking.js">
<clobbers target="BLETransmitter"/>
</js-module>
<platform name="android">
<framework src="org.altbeacon:android-beacon-library:2+" />
<config-file parent="/*" target="res/xml/config.xml">
<feature name="cordova-plugin-altbeacon-marking">
<param name="android-package"
value="com.bernard.BLETransmitter"/>
<param name="onload" value="true" />
</feature>
</config-file>
<source-file src="src/android/BLETransmitter.java"
target-dir="src/com/bernard"/>
<config-file target="AndroidManifest.xml" parent="/manifest">
<uses-permission android:name="android.permission.BLUETOOTH"/>
<uses-feature android:name="android.hardware.bluetooth" android:required="false"/>
</config-file>
</platform>
</plugin>