2014-11-04 13:19:27 +01:00
<?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"
2015-02-23 16:28:39 +01:00
version= "0.0.2"
2014-11-04 13:19:27 +01:00
>
2015-01-14 12:29:08 +01:00
<name > GeneanetCustomCamera</name>
2015-02-23 16:28:39 +01:00
<description > This cordova plugin is an alternative to the official cordova plugin (camera). It starts a custom camera: image overlay with an opacity slider, user-defined color of the buttons, activating/deactivating functions.</description>
2015-01-23 16:29:52 +01:00
<license > BSD</license>
2014-11-04 13:19:27 +01:00
<keywords > custom,camera,geneanet</keywords>
2015-02-23 16:28:39 +01:00
<repo > https://github.com/geneanet/customCamera</repo>
<issue > https://github.com/geneanet/customCamera/issues</issue>
2015-01-14 12:29:08 +01:00
<js-module src= "www/customCamera.js" name= "GeneanetCustomCamera" >
2015-01-20 11:22:48 +01:00
<clobbers target= "navigator.GeneanetCustomCamera" />
2014-11-04 13:19:27 +01:00
</js-module>
2014-11-14 16:05:50 +01:00
<hook type= "after_plugin_install" src= "hooks/after_plugin_install/npminstall.js" />
2014-11-04 13:19:27 +01:00
<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" />
2014-11-04 13:19:27 +01:00
</feature>
</config-file>
<config-file target= "AndroidManifest.xml" parent= "/*" >
<uses-permission android:name= "android.permission.CAMERA" />
2014-11-20 15:40:30 +01:00
<uses-permission android:name= "android.permission.WRITE_EXTERNAL_STORAGE" />
2014-11-04 13:19:27 +01:00
</config-file>
2014-11-10 10:09:52 +01:00
2014-11-14 16:05:50 +01:00
<source-file src= "src/android/CameraLauncher.java" target-dir= "src/org/geneanet/customcamera" />
2014-12-11 12:22:14 +01:00
<source-file src= "src/android/customCamera/src/org/geneanet/customcamera/TransferBigData.java" target-dir= "src/org/geneanet/customcamera" />
2014-11-21 15:50:38 +01:00
<source-file src= "src/android/customCamera/src/org/geneanet/customcamera/ManagerCamera.java" target-dir= "src/org/geneanet/customcamera" />
2014-11-14 16:05:50 +01:00
<source-file src= "src/android/customCamera/src/org/geneanet/customcamera/CameraPreview.java" target-dir= "src/org/geneanet/customcamera" />
2014-11-14 17:12:31 +01:00
<source-file src= "src/android/customCamera/src/org/geneanet/customcamera/VerticalSeekBar.java" target-dir= "src/org/geneanet/customcamera" />
2014-11-14 16:05:50 +01:00
<hook type= "before_build" src= "hooks/before_build/generateActivity.js" />
2014-11-04 13:19:27 +01:00
</platform>
2015-01-23 16:29:52 +01:00
</plugin>