forked from mkcode/Cordova-DBCamera
-
Notifications
You must be signed in to change notification settings - Fork 5
/
plugin.xml
39 lines (39 loc) · 1.59 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
<?xml version='1.0' encoding='UTF-8'?>
<plugin id='com.vulume.cordova.dbcamera' version='0.0.3' xmlns='http://apache.org/cordova/ns/plugins/1.0' xmlns:android='http://schemas.android.com/apk/res/android'>
<name>
dbcamera
</name>
<description>
Plugman compatible wrapper for DBCamera.
</description>
<author>
Chris Ewald, Vulume Inc.
</author>
<keywords>
camera, ios
</keywords>
<license>
MIT
</license>
<js-module name='dbcamera' src='www/dbcamera.js'>
<clobbers target='cordova.plugins.dbcamera'/>
</js-module>
<platform name='ios'>
<config-file parent='/*' target='config.xml'>
<feature name='DBCamera'>
<param name='ios-package' value='CDVdbcamera'/>
</feature>
</config-file>
<source-file src='src/ios/CDVdbcamera.m'/>
<framework src='Foundation.framework' autogen='true'/>
<framework src='AVFoundation.framework' autogen='true'/>
<framework src='CoreMedia.framework' autogen='true'/>
<header-file src='src/ios/vendor/headers/DBCameraContainerViewController.h' autogen='true'/>
<header-file src='src/ios/vendor/headers/DBCameraViewController.h' autogen='true'/>
<header-file src='src/ios/vendor/headers/DBCameraDelegate.h' autogen='true'/>
<header-file src='src/ios/vendor/headers/DBCameraView.h' autogen='true'/>
<resource-file src='src/ios/vendor/resources/DBCameraImages.xcassets' autogen='true'/>
<resource-file src='src/ios/vendor/resources/en.lproj/DBCamera.strings' autogen='true'/>
<source-file framework='true' src='src/ios/vendor/libdbcamera.a' autogen='true'/>
</platform>
</plugin>