forked from evothings/phonegap-estimotebeacons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
32 lines (31 loc) · 1.23 KB
/
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
30
31
32
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://cordova.apache.org/ns/plugins/1.0"
id="pl.makingwaves.estimotebeacons"
version="0.1.0">
<name>EstimoteBeacons</name>
<description>todo</description>
<license>todo</license>
<keywords>todo</keywords>
<js-module src="www/EstimoteBeacons.js" name="EstimoteBeacons">
<clobbers target="EstimoteBeacons" />
</js-module>
<!-- ios -->
<platform name="ios">
<framework src="CoreBluetooth.framework" />
<framework src="CoreLocation.framework" />
<framework src="SystemConfiguration.framework" />
<source-file src="src/ios/libEstimoteSDK.a" framework="true" />
<header-file src="src/ios/ESTBeacon.h" />
<header-file src="src/ios/ESTBeaconDefinitions.h" />
<header-file src="src/ios/ESTBeaconManager.h" />
<header-file src="src/ios/ESTBeaconRegion.h" />
<header-file src="src/ios/ESTBeaconUpdateInfo.h" />
<header-file src="src/ios/EstimoteBeacons.h" />
<source-file src="src/ios/EstimoteBeacons.m" />
<config-file target="config.xml" parent="/*">
<feature name="EstimoteBeacons">
<param name="ios-package" value="EstimoteBeacons" />
</feature>
</config-file>
</platform>
</plugin>