forked from petermetz/cordova-plugin-ibeacon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
29 lines (24 loc) · 934 Bytes
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="org.apache.cordova.ibeacon"
version="1.0.0">
<name>iBeacon</name>
<description>Cordova iBeacon Plugin</description>
<license>Apache 2.0</license>
<keywords>cordova,ibeacon,beacon,bluetooth,le</keywords>
<repo>https://github.com/petermetz/cordova-plugin-ibeacon.git</repo>
<js-module src="www/IBeacon.js" name="device">
<clobbers target="IBeacon" />
</js-module>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="IBeacon">
<param name="ios-package" value="CDVIBeacon"/>
</feature>
</config-file>
<header-file src="src/ios/CDVIBeacon.h" />
<source-file src="src/ios/CDVIBeacon.m" />
<framework src="CoreBluetooth.framework" />
</platform>
</plugin>