-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
37 lines (30 loc) · 1.41 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
<?xml version="1.0" encoding="UTF-8" ?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="nl-afas-cordova-plugin-camerabooth" version="0.1.3">
<name>CameraBooth</name>
<description>Camera photo-booth plugin, shows preview and after counting down takes a number of pictures</description>
<license>MIT</license>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<js-module src="www/plugins.cameraBooth.js" name="CameraBooth">
<clobbers target="cordova.plugins.CameraBooth" />
</js-module>
<!-- iOS -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="CameraBooth">
<param name="ios-package" value="CameraBooth" />
</feature>
</config-file>
<source-file src="src/ios/CameraBooth.m" />
<header-file src="src/ios/CameraBooth.h" />
<source-file src="src/ios/CameraBoothViewController.m" />
<header-file src="src/ios/CameraBoothViewController.h" />
<resource-file src="src/ios/CameraBooth.storyboard" />
<framework src="CoreVideo.framework" />
<framework src="CoreMedia.framework" />
<framework src="AvFoundation.framework" />
<framework src="ImageIO.framework" />
<framework src="QuartzCore.framework" />
</platform>
</plugin>