-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
36 lines (27 loc) · 1.62 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
<?xml version='1.0' encoding='utf-8'?>
<plugin xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-ziggeo" version="1.0.3"
xmlns="http://apache.org/cordova/ns/plugins/1.0">
<name>Ziggeo Recorder and Player</name>
<js-module name="ZiggeoCordovaPlugin" src="www/ziggeo.js">
<clobbers target="cordova.plugins.Ziggeo"/>
</js-module>
<platform name="android">
<framework src="src/android/build.gradle" custom="true" type="gradleReference"/>
<config-file parent="/*" target="res/xml/config.xml">
<feature name="ZiggeoCordovaPlugin">
<param name="android-package" value="com.ziggeo.ZiggeoCordovaPlugin"/>
</feature>
</config-file>
<config-file parent="/*" target="AndroidManifest.xml">
<uses-permission android:name="android.permission.CAMERA"/>
<uses-permission android:name="android.permission.INTERNET"/>
<!-- Camera features - recommended -->
<uses-feature android:name="android.hardware.camera" android:required="true"/>
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
<uses-feature android:name="android.hardware.camera.flash" android:required="false"/>
</config-file>
<resource-file src="src/android/styles.xml" target="res/values/styles.xml"/>
<source-file src="src/android/com/ziggeo/ZiggeoCordovaPlugin.java" target-dir="src/com/ziggeo"/>
<source-file src="src/android/com/ziggeo/CameraFullscreenRecorder.java" target-dir="src/com/ziggeo"/>
</platform>
</plugin>