-
Notifications
You must be signed in to change notification settings - Fork 15
/
plugin.xml
executable file
·31 lines (26 loc) · 1.06 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="com.mrameezraja.plugins.magnetometer"
version="0.0.1">
<name>Magneto Meter</name>
<author>Rameez Raja</author>
<description>Magnetic Interference detector Plugin</description>
<license>MIT</license>
<js-module src="www/magneto-meter.js" name="gps">
<clobbers target="cordova.plugins.magnetoMeter" />
</js-module>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="MagnetoMeter">
<param name="ios-package" value="MagnetoMeter"/>
</feature>
</config-file>
<header-file src="src/ios/MagnetoMeter.h" />
<source-file src="src/ios/MagnetoMeter.m" />
<!--<framework src="CoreLocation.framework" weak="true" />
<framework src="MobileCoreServices.framework" weak="true" />
<framework src="CoreGraphics.framework" />-->
</platform>
</plugin>