Files
customCamera/plugin.xml
T

88 lines
4.6 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="UTF-8"?>
2015-09-25 16:05:59 +02:00
<plugin
xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="org.geneanet.customCamera"
2015-09-25 16:05:59 +02:00
version="0.2.0"
>
<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>
<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>
<js-module src="www/customCamera.js" name="GeneanetCustomCamera">
<clobbers target="navigator.GeneanetCustomCamera" />
</js-module>
<hook type="after_plugin_install" src="hooks/after_plugin_install/npminstall.js" />
<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" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
</config-file>
2014-11-10 10:09:52 +01:00
<source-file src="src/android/CameraLauncher.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" />
<source-file src="src/android/customCamera/src/org/geneanet/customcamera/CameraPreview.java" target-dir="src/org/geneanet/customcamera" />
<source-file src="src/android/customCamera/src/org/geneanet/customcamera/VerticalSeekBar.java" target-dir="src/org/geneanet/customcamera" />
<source-file src="src/android/customCamera/src/org/geneanet/customcamera/BitmapUtils.java" target-dir="src/org/geneanet/customcamera" />
<source-file src="src/android/customCamera/src/org/geneanet/customcamera/TmpFileUtils.java" target-dir="src/org/geneanet/customcamera" />
2015-06-10 12:23:03 +02:00
<hook type="before_compile" src="hooks/before_compile/generateActivity.js" />
</platform>
2015-07-07 14:54:00 +02:00
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="CustomCamera">
<param name="ios-package" value="CustomCamera" />
</feature>
</config-file>
<config-file target="config.xml" parent="/*">
<feature name="LocalStorage">
<param name="ios-package" value="CDVLocalStorage" />
</feature>
</config-file>
2015-09-25 16:05:59 +02:00
<header-file src="src/ios/classes/CustomCamera.h" />
<source-file src="src/ios/classes/CustomCamera.m" />
2015-07-07 14:54:00 +02:00
<header-file src="src/ios/classes/AVCamPreviewView.h" />
<source-file src="src/ios/classes/AVCamPreviewView.m" />
2015-09-25 16:05:59 +02:00
2015-07-07 14:54:00 +02:00
<header-file src="src/ios/classes/AVCamViewController.h" />
<source-file src="src/ios/classes/AVCamViewController.m" />
2015-07-08 14:04:47 +02:00
<header-file src="src/ios/classes/CameraParameter.h" />
<source-file src="src/ios/classes/CameraParameter.m" />
2015-09-25 16:05:59 +02:00
2015-07-07 14:54:00 +02:00
<resource-file src="src/ios/classes/AVCamViewController_iPhone.xib" />
<resource-file src="src/ios/classes/AVCamViewController_iPad.xib" />
<resource-file src="src/ios/image/icon_back.png" />
<resource-file src="src/ios/image/icon_capture_pressed.png" />
<resource-file src="src/ios/image/icon_capture.png" />
<resource-file src="src/ios/image/icon_delete.png" />
<resource-file src="src/ios/image/icon_flash_auto.png" />
<resource-file src="src/ios/image/icon_flash_off.png" />
<resource-file src="src/ios/image/icon_flash.png" />
<resource-file src="src/ios/image/icon_flip.png" />
<resource-file src="src/ios/image/icon_max.png" />
<resource-file src="src/ios/image/icon_min.png" />
<resource-file src="src/ios/image/icon_submit.png" />
<resource-file src="src/ios/image/sample.png" />
2015-09-25 16:05:59 +02:00
2015-07-07 14:54:00 +02:00
<framework src="CoreGraphics.framework" weak="true" />
<framework src="AssetsLibrary.framework" weak="true" />
<framework src="AVFoundation.framework" weak="true" />
<framework src="CoreAudio.framework" weak="true" />
<framework src="CoreLocation.framework" weak="true" />
<framework src="MobileCoreServices.framework" weak="true" />
</platform>
2015-01-23 16:29:52 +01:00
</plugin>