forked from EddyVerbruggen/HealthKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
executable file
·39 lines (29 loc) · 999 Bytes
/
plugin.xml
File metadata and controls
executable file
·39 lines (29 loc) · 999 Bytes
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
37
38
39
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="com.telerik.plugins.healthkit"
version="0.2.0">
<name>HealthKit</name>
<description>
Interact with the iOS8 HealthKit SDK
</description>
<license>MIT</license>
<engines>
<engine name="cordova" version=">=3.0.0"/>
</engines>
<js-module src="www/HealthKit.js" name="HealthKit">
<clobbers target="window.plugins.healthkit" />
</js-module>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="HealthKit">
<param name="ios-package" value="HealthKit"/>
</feature>
</config-file>
<header-file src="src/ios/HKHealthStore+AAPLExtensions.h"/>
<source-file src="src/ios/HKHealthStore+AAPLExtensions.m"/>
<header-file src="src/ios/HealthKit.h"/>
<source-file src="src/ios/HealthKit.m"/>
<framework src="HealthKit.framework" weak="true" />
</platform>
</plugin>