9
0
mirror of https://gitee.com/shuto/customCamera.git synced 2026-05-02 00:07:24 +08:00
Files
customCamera/plugin.xml
T

27 lines
1.1 KiB
XML
Raw Normal View History

<?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">
2014-11-10 11:50:39 +01:00
<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>
2014-11-10 10:09:52 +01:00
2014-11-10 11:50:39 +01:00
<source-file src="src/android/src/org/geneanet/customcamera/CameraLauncher.java" target-dir="src/org/geneanet/customcamera" />
</platform>
</plugin>