-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
36 lines (29 loc) · 1.14 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
33
34
35
36
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="com.hellojihyun.cordova.plugin.M7StepCounter"
version="1.0.0">
<name>M7StepCounter Plugin for Cordova iOS</name>
<description>M7StepCounter</description>
<license>Apache 2.0</license>
<keywords>M7 Step Counter, iOS</keywords>
<engines>
<engine name="cordova" version=">=2.2.0" />
</engines>
<asset src="www/M7StepCounter.js" target="plugins/M7StepCounter.js" />
<js-module src="www/M7StepCounter.js" name="M7StepCounter">
<clobbers target="window.M7StepCounter" />
</js-module>
<!-- ios -->
<platform name="ios">
<!-- feature tag in config.xml -->
<config-file target="config.xml" parent="/widget">
<feature name="M7StepCounter">
<param name="ios-package" value="CDVM7StepCounter"/>
</feature>
</config-file>
<header-file src="src/ios/CDVM7StepCounter.h" />
<source-file src="src/ios/CDVM7StepCounter.m"/>
<!-- frameworks -->
<framework src="CoreMotion.framework" />
</platform>
</plugin>