cordova-plugin-camera/plugin.xml

215 lines
8.1 KiB
XML
Raw Normal View History

2013-04-02 06:35:43 +08:00
<?xml version="1.0" encoding="UTF-8"?>
2013-07-25 01:54:20 +08:00
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="org.apache.cordova.camera"
version="0.2.7-dev">
2013-04-02 06:35:43 +08:00
<name>Camera</name>
2013-07-31 06:31:58 +08:00
<description>Cordova Camera Plugin</description>
<license>Apache 2.0</license>
2013-07-31 06:31:58 +08:00
<keywords>cordova,camera</keywords>
<repo>https://git-wip-us.apache.org/repos/asf/cordova-plugin-camera.git</repo>
<issue>https://issues.apache.org/jira/browse/CB/component/12320645</issue>
2013-05-24 05:51:18 +08:00
<js-module src="www/CameraConstants.js" name="Camera">
2013-06-14 05:43:56 +08:00
<clobbers target="Camera" />
</js-module>
2013-05-24 05:51:18 +08:00
<js-module src="www/CameraPopoverOptions.js" name="CameraPopoverOptions">
<clobbers target="CameraPopoverOptions" />
</js-module>
2013-05-24 05:51:18 +08:00
2013-07-30 10:04:44 +08:00
2013-06-14 05:43:56 +08:00
<js-module src="www/Camera.js" name="camera">
<clobbers target="navigator.camera" />
2013-05-24 10:24:43 +08:00
</js-module>
2013-09-21 01:59:05 +08:00
<!-- firefoxos -->
<platform name="firefoxos">
<config-file target="config.xml" parent="/*">
<feature name="Camera">
<param name="firefoxos-package" value="Camera" />
</feature>
</config-file>
<js-module src="src/firefoxos/CameraProxy.js" name="CameraProxy">
2013-09-21 01:59:05 +08:00
<runs />
</js-module>
</platform>
2013-04-02 06:35:43 +08:00
<!-- android -->
<platform name="android">
2013-05-24 05:51:18 +08:00
<config-file target="res/xml/config.xml" parent="/*">
2013-05-24 10:22:57 +08:00
<feature name="Camera">
<param name="android-package" value="org.apache.cordova.camera.CameraLauncher"/>
2013-05-24 05:51:18 +08:00
</feature>
2013-04-02 06:35:43 +08:00
</config-file>
<config-file target="AndroidManifest.xml" parent="/*">
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
</config-file>
2013-04-02 06:35:43 +08:00
<source-file src="src/android/CameraLauncher.java" target-dir="src/org/apache/cordova/camera" />
<source-file src="src/android/FileHelper.java" target-dir="src/org/apache/cordova/camera" />
<source-file src="src/android/ExifHelper.java" target-dir="src/org/apache/cordova/camera" />
<js-module src="www/CameraPopoverHandle.js" name="CameraPopoverHandle">
<clobbers target="CameraPopoverHandle" />
</js-module>
2013-08-16 06:01:14 +08:00
</platform>
2013-08-16 06:01:14 +08:00
2013-10-19 01:43:26 +08:00
<!-- amazon-fireos -->
<platform name="amazon-fireos">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="Camera">
<param name="android-package" value="org.apache.cordova.camera.CameraLauncher"/>
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/*">
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
</config-file>
<source-file src="src/android/CameraLauncher.java" target-dir="src/org/apache/cordova/camera" />
<source-file src="src/android/FileHelper.java" target-dir="src/org/apache/cordova/camera" />
<source-file src="src/android/ExifHelper.java" target-dir="src/org/apache/cordova/camera" />
<js-module src="www/CameraPopoverHandle.js" name="CameraPopoverHandle">
<clobbers target="CameraPopoverHandle" />
</js-module>
</platform>
2013-10-26 10:17:04 +08:00
<!-- ubuntu -->
<platform name="ubuntu">
2013-11-11 21:59:22 +08:00
<config-file target="config.xml" parent="/*">
<feature name="Camera">
<param policy_group="camera" policy_version="1" />
</feature>
</config-file>
2013-10-26 10:17:04 +08:00
<js-module src="www/CameraPopoverHandle.js" name="CameraPopoverHandle">
<clobbers target="CameraPopoverHandle" />
</js-module>
<header-file src="src/ubuntu/camera.h" />
<source-file src="src/ubuntu/camera.cpp" />
<resource-file src="src/ubuntu/back.png" />
<resource-file src="src/ubuntu/CaptureWidget.qml" />
<resource-file src="src/ubuntu/shoot.png" />
<resource-file src="src/ubuntu/toolbar-left.png" />
<resource-file src="src/ubuntu/toolbar-middle.png" />
<resource-file src="src/ubuntu/toolbar-right.png" />
</platform>
<!-- ios -->
2013-08-16 06:01:14 +08:00
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="Camera">
2013-05-24 10:22:57 +08:00
<param name="ios-package" value="CDVCamera" />
</feature>
</config-file>
2013-08-16 06:01:14 +08:00
<js-module src="www/ios/CameraPopoverHandle.js" name="CameraPopoverHandle">
<clobbers target="CameraPopoverHandle" />
</js-module>
2013-05-24 05:51:18 +08:00
<header-file src="src/ios/CDVCamera.h" />
<source-file src="src/ios/CDVCamera.m" />
<header-file src="src/ios/CDVJpegHeaderWriter.h" />
<source-file src="src/ios/CDVJpegHeaderWriter.m" />
<header-file src="src/ios/CDVExif.h" />
<framework src="ImageIO.framework" weak="true" />
<framework src="CoreLocation.framework" />
<framework src="CoreGraphics.framework" />
<framework src="AssetsLibrary.framework" />
<framework src="MobileCoreServices.framework" />
</platform>
2013-06-08 02:37:25 +08:00
<!-- blackberry10 -->
<platform name="blackberry10">
<source-file src="src/blackberry10/index.js" target-dir="Camera" />
<config-file target="www/config.xml" parent="/widget">
<feature name="Camera" value="Camera"/>
</config-file>
<config-file target="www/config.xml" parent="/widget/rim:permissions">
<rim:permit>access_shared</rim:permit>
</config-file>
<js-module src="www/CameraPopoverHandle.js" name="CameraPopoverHandle">
<clobbers target="CameraPopoverHandle" />
</js-module>
</platform>
2013-06-08 02:37:25 +08:00
<!-- wp7 -->
<platform name="wp7">
<config-file target="config.xml" parent="/*">
<feature name="Camera">
<param name="wp-package" value="Camera"/>
</feature>
</config-file>
2013-06-15 04:48:23 +08:00
<config-file target="Properties/WMAppManifest.xml" parent="/Deployment/App/Capabilities">
<Capability Name="ID_CAP_ISV_CAMERA" />
<Capability Name="ID_CAP_MEDIALIB" />
2013-06-15 04:48:23 +08:00
</config-file>
2013-07-09 05:50:18 +08:00
<source-file src="src/wp/Camera.cs" />
<js-module src="www/CameraPopoverHandle.js" name="CameraPopoverHandle">
<clobbers target="CameraPopoverHandle" />
</js-module>
2013-06-08 02:37:25 +08:00
</platform>
2013-06-25 05:11:43 +08:00
<!-- wp8 -->
<platform name="wp8">
<config-file target="config.xml" parent="/*">
<feature name="Camera">
<param name="wp-package" value="Camera"/>
</feature>
</config-file>
<config-file target="Properties/WMAppManifest.xml" parent="/Deployment/App/Capabilities">
<Capability Name="ID_CAP_ISV_CAMERA" />
<Capability Name="ID_CAP_MEDIALIB_PHOTO"/>
2013-06-25 05:11:43 +08:00
</config-file>
2013-07-09 05:50:18 +08:00
<source-file src="src/wp/Camera.cs" />
<js-module src="www/CameraPopoverHandle.js" name="CameraPopoverHandle">
<clobbers target="CameraPopoverHandle" />
</js-module>
2013-06-25 05:11:43 +08:00
</platform>
2013-07-30 10:04:44 +08:00
<!-- windows8 -->
<platform name="windows8">
2013-09-25 21:02:03 +08:00
<dependency id="org.apache.cordova.file" />
2013-08-16 06:01:14 +08:00
<config-file target="package.appxmanifest" parent="/Package/Capabilities">
<Capability Name="picturesLibrary" />
<DeviceCapability Name="webcam" />
</config-file>
2013-07-30 10:04:44 +08:00
<js-module src="www/CameraPopoverHandle.js" name="CameraPopoverHandle">
<clobbers target="CameraPopoverHandle" />
</js-module>
<js-module src="src/windows8/CameraProxy.js" name="CameraProxy">
<merges target="" />
</js-module>
</platform>
2013-09-19 07:22:13 +08:00
<!-- firefoxos -->
<platform name="firefoxos">
<config-file target="config.xml" parent="/*">
<feature name="Camera">
<param name="firefoxos-package" value="Camera" />
</feature>
2013-10-09 01:49:02 +08:00
</config-file>
<js-module src="www/CameraPopoverHandle.js" name="CameraPopoverHandle">
<clobbers target="CameraPopoverHandle" />
</js-module>
2013-09-19 07:22:13 +08:00
<js-module src="src/firefoxos/CameraProxy.js" name="CameraProxy">
<runs />
</js-module>
</platform>
2013-08-16 06:01:14 +08:00
2013-04-02 06:35:43 +08:00
</plugin>