forked from Clark-Nikdel-Powell/realtime_camera
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
32 lines (27 loc) · 1.11 KB
/
Copy pathplugin.xml
File metadata and controls
32 lines (27 loc) · 1.11 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="com.clarknikdelpowell.realtime_camera"
version="0.2.0">
<name>Realtime Camera</name>
<description>Loosely based on CanvasCamera by daraosn</description>
<keywords>camera,canvas,realtime,webcam</keywords>
<license>MIT</license>
<repo>https://github.com/Clark-Nikdel-Powell/realtime_camera.git</repo>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="RealtimeCamera">
<param name="ios-package" value="CDVRealtimeCamera"/>
<param name="onload" value="true" />
</feature>
</config-file>
<js-module src="www/realtime-camera.js" name="RealtimeCamera">
<clobbers target="RealtimeCamera"/>
</js-module>
<framework src="CoreVideo.framework" />
<framework src="AVFoundation.framework" />
<framework src="JavaScriptCore.framework" />
<source-file src="src/ios/CDVRealtimeCamera.m"/>
<header-file src="src/ios/CDVRealtimeCamera.h"/>
</platform>
</plugin>