9
0
mirror of https://gitee.com/shuto/customCamera.git synced 2026-02-16 00:00:09 +08:00
Files
customCamera/plugin.xml
2014-11-10 10:52:18 +01:00

27 lines
1.1 KiB
XML

<?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="org.geneanet.customCamera"
version="0.0.1"
>
<name>customCamera</name>
<description>customCamera by Geneanet</description>
<license>undefined</license>
<keywords>custom,camera,geneanet</keywords>
<js-module src="www/customCamera.js" name="customCamera">
<clobbers target="customCamera" />
</js-module>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="CustomCamera">
<param name="android-package" value="org.geneanet.customCamera.CameraLauncher"/>
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/*">
<uses-permission android:name="android.permission.CAMERA" />
</config-file>
<source-file src="src/android/src/org/geneanet/customcamera/CameraLauncher.java" target-dir="src/org/geneanet/customCamera" />
</platform>
</plugin>