forked from vgctotero/heartbeat-cordova-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
plugin.xml
executable file
·73 lines (59 loc) · 2.91 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?xml version="1.0" encoding="utf-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
id="com.vgc.cordova.plugins.heartbeat"
version="0.2.2">
<name>HeartBeat</name>
<description>Cordova Heart Beat Monitor</description>
<keywords>cordova,heart,beat,rate,bpm</keywords>
<repo>https://github.com/vgctotero/heartbeat-cordova-plugin</repo>
<engines>
<engine name="cordova" version=">=3.4.0"/>
</engines>
<asset src="www/heartbeat.js" target="js/heartbeat.js"/>
<js-module src="www/heartbeat.js" name="heartbeat">
<clobbers target="heartbeat" />
</js-module>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="HeartBeat">
<param name="android-package" value="com.vgc.cordova.plugins.heartbeat.HeartBeatPlugin"/>
</feature>
</config-file>
<source-file src="src/android/HeartBeatPlugin.java" target-dir="src/com/vgc/cordova/plugins/heartbeat/"/>
<source-file src="src/android/HeartBeatDetection.java" target-dir="src/com/vgc/cordova/plugins/heartbeat/"/>
<source-file src="src/android/CameraActivity.java" target-dir="src/com/vgc/cordova/plugins/heartbeat/"/>
<source-file src="src/android/ForegroundCameraPreview.java" target-dir="src/com/vgc/cordova/plugins/heartbeat/"/>
<source-file src="src/android/foregroundcamera.xml" target-dir="res/layout"/>
<config-file target="AndroidManifest.xml" parent="/manifest/application">
<activity
android:label="HeartBeat"
android:name="com.vgc.cordova.plugins.heartbeat.CameraActivity"
android:configChanges="keyboardHidden"
android:exported="false"
android:theme="@android:style/Theme.Translucent.NoTitleBar">
</activity>
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest">
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.FLASHLIGHT"
android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
android:protectionLevel="normal" />
<uses-feature android:name="android.hardware.camera"/>
<uses-feature android:name="android.hardware.camera.flash" />
</config-file>
</platform>
<platform name="ios">
<config-file target="config.xml" parent="/widget">
<feature name="HeartBeat">
<param name="ios-package" value="CDVHeartBeat" />
</feature>
</config-file>
<header-file src="src/ios/CDVHeartBeat.h" target-dir="HeartBeatPlugin"/>
<source-file src="src/ios/CDVHeartBeat.m" target-dir="HeartBeatPlugin"/>
<header-file src="src/ios/CDVHeartBeatDetection.h" target-dir="HeartBeatPlugin"/>
<source-file src="src/ios/CDVHeartBeatDetection.m" target-dir="HeartBeatPlugin"/>
<framework src="AVFoundation.framework" />
<framework src="CoreVideo.framework" />
<framework src="CoreGraphics.framework" />
</platform>
</plugin>