2017-03-01 09:55:56 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
or more contributor license agreements. See the NOTICE file
|
|
|
|
distributed with this work for additional information
|
|
|
|
regarding copyright ownership. The ASF licenses this file
|
|
|
|
to you under the Apache License, Version 2.0 (the
|
|
|
|
"License"); you may not use this file except in compliance
|
|
|
|
with the License. You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing,
|
|
|
|
software distributed under the License is distributed on an
|
|
|
|
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
KIND, either express or implied. See the License for the
|
|
|
|
specific language governing permissions and limitations
|
|
|
|
under the License.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
id="cordova-plugin-camera"
|
2021-08-23 13:25:23 +08:00
|
|
|
version="6.0.1-dev">
|
2017-03-01 09:55:56 +08:00
|
|
|
<name>Camera</name>
|
|
|
|
<description>Cordova Camera Plugin</description>
|
|
|
|
<license>Apache 2.0</license>
|
|
|
|
<keywords>cordova,camera</keywords>
|
2019-06-28 00:45:52 +08:00
|
|
|
<repo>https://github.com/apache/cordova-plugin-camera</repo>
|
|
|
|
<issue>https://github.com/apache/cordova-plugin-camera/issues</issue>
|
2017-03-01 09:55:56 +08:00
|
|
|
|
2017-10-18 23:37:29 +08:00
|
|
|
<engines>
|
2020-07-28 19:25:48 +08:00
|
|
|
<engine name="cordova" version=">=9.0.0"/>
|
2021-08-09 19:56:15 +08:00
|
|
|
<engine name="cordova-android" version=">=10.0.0" />
|
2020-07-28 19:25:48 +08:00
|
|
|
<engine name="cordova-ios" version=">=5.1.0" />
|
2017-10-18 23:37:29 +08:00
|
|
|
</engines>
|
2017-03-01 09:55:56 +08:00
|
|
|
|
|
|
|
<js-module src="www/CameraConstants.js" name="Camera">
|
|
|
|
<clobbers target="Camera" />
|
2013-05-23 04:47:10 +08:00
|
|
|
</js-module>
|
2017-03-01 09:55:56 +08:00
|
|
|
|
|
|
|
<js-module src="www/CameraPopoverOptions.js" name="CameraPopoverOptions">
|
|
|
|
<clobbers target="CameraPopoverOptions" />
|
2013-07-10 02:38:37 +08:00
|
|
|
</js-module>
|
2017-03-01 09:55: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>
|
2017-03-01 09:55:56 +08:00
|
|
|
|
|
|
|
<!-- android -->
|
|
|
|
<platform name="android">
|
|
|
|
<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>
|
|
|
|
<config-file target="AndroidManifest.xml" parent="application">
|
|
|
|
<provider
|
2017-06-30 21:59:27 +08:00
|
|
|
android:name="org.apache.cordova.camera.FileProvider"
|
2020-07-16 19:08:40 +08:00
|
|
|
android:authorities="${applicationId}.cordova.plugin.camera.provider"
|
2017-03-01 09:55:56 +08:00
|
|
|
android:exported="false"
|
|
|
|
android:grantUriPermissions="true" >
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
2017-06-30 21:59:27 +08:00
|
|
|
android:resource="@xml/camera_provider_paths"/>
|
2017-03-01 09:55:56 +08:00
|
|
|
</provider>
|
|
|
|
</config-file>
|
|
|
|
|
2022-03-18 08:08:13 +08:00
|
|
|
<config-file target="AndroidManifest.xml" parent="queries">
|
|
|
|
<intent>
|
|
|
|
<action android:name="android.media.action.IMAGE_CAPTURE" />
|
|
|
|
</intent>
|
|
|
|
<intent>
|
|
|
|
<action android:name="android.intent.action.GET_CONTENT" />
|
|
|
|
</intent>
|
|
|
|
<intent>
|
|
|
|
<action android:name="android.intent.action.PICK" />
|
|
|
|
</intent>
|
|
|
|
<intent>
|
|
|
|
<action android:name="com.android.camera.action.CROP" />
|
|
|
|
<data android:scheme="content" android:mimeType="image/*"/>
|
|
|
|
</intent>
|
2021-08-09 19:57:12 +08:00
|
|
|
</config-file>
|
|
|
|
|
2017-03-01 09:55:56 +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" />
|
2017-06-30 21:59:27 +08:00
|
|
|
<source-file src="src/android/FileProvider.java" target-dir="src/org/apache/cordova/camera" />
|
2020-10-17 10:48:22 +08:00
|
|
|
<source-file src="src/android/GalleryPathVO.java" target-dir="src/org/apache/cordova/camera" />
|
2017-06-30 21:59:27 +08:00
|
|
|
<source-file src="src/android/xml/camera_provider_paths.xml" target-dir="res/xml" />
|
2017-03-01 09:55:56 +08:00
|
|
|
|
2021-08-09 22:09:29 +08:00
|
|
|
<preference name="ANDROIDX_CORE_VERSION" default="1.6.+"/>
|
|
|
|
<framework src="androidx.core:core:$ANDROIDX_CORE_VERSION" />
|
|
|
|
|
2017-03-01 09:55:56 +08:00
|
|
|
<js-module src="www/CameraPopoverHandle.js" name="CameraPopoverHandle">
|
|
|
|
<clobbers target="CameraPopoverHandle" />
|
|
|
|
</js-module>
|
|
|
|
</platform>
|
|
|
|
|
|
|
|
<!-- ios -->
|
|
|
|
<platform name="ios">
|
|
|
|
<config-file target="config.xml" parent="/*">
|
|
|
|
<feature name="Camera">
|
|
|
|
<param name="ios-package" value="CDVCamera" />
|
|
|
|
</feature>
|
|
|
|
<preference name="CameraUsesGeolocation" value="false" />
|
|
|
|
</config-file>
|
|
|
|
|
|
|
|
<js-module src="www/ios/CameraPopoverHandle.js" name="CameraPopoverHandle">
|
|
|
|
<clobbers target="CameraPopoverHandle" />
|
|
|
|
</js-module>
|
|
|
|
|
|
|
|
<header-file src="src/ios/UIImage+CropScaleOrientation.h" />
|
|
|
|
<source-file src="src/ios/UIImage+CropScaleOrientation.m" />
|
|
|
|
<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" />
|
|
|
|
<framework src="CoreGraphics.framework" />
|
|
|
|
<framework src="AVFoundation.framework" />
|
|
|
|
|
|
|
|
</platform>
|
|
|
|
|
|
|
|
<!-- browser -->
|
|
|
|
<platform name="browser">
|
|
|
|
<config-file target="config.xml" parent="/*">
|
|
|
|
<feature name="Camera">
|
|
|
|
<param name="browser-package" value="Camera" />
|
|
|
|
</feature>
|
|
|
|
</config-file>
|
|
|
|
|
|
|
|
<js-module src="src/browser/CameraProxy.js" name="CameraProxy">
|
|
|
|
<runs />
|
|
|
|
</js-module>
|
|
|
|
</platform>
|
|
|
|
|
|
|
|
<!-- windows -->
|
|
|
|
<platform name="windows">
|
|
|
|
<config-file target="package.appxmanifest" parent="/Package/Capabilities">
|
|
|
|
<DeviceCapability Name="webcam" />
|
|
|
|
</config-file>
|
|
|
|
<js-module src="www/CameraPopoverHandle.js" name="CameraPopoverHandle">
|
|
|
|
<clobbers target="CameraPopoverHandle" />
|
|
|
|
</js-module>
|
|
|
|
<js-module src="src/windows/CameraProxy.js" name="CameraProxy">
|
|
|
|
<runs />
|
|
|
|
</js-module>
|
|
|
|
</platform>
|
|
|
|
|
2017-10-10 23:11:10 +08:00
|
|
|
<!-- osx -->
|
|
|
|
<platform name="osx">
|
|
|
|
<config-file target="config.xml" parent="/*">
|
|
|
|
<feature name="Camera">
|
|
|
|
<param name="osx-package" value="CDVCamera"/>
|
|
|
|
</feature>
|
|
|
|
</config-file>
|
2017-03-01 09:55:56 +08:00
|
|
|
|
2017-10-10 23:11:10 +08:00
|
|
|
<js-module src="www/CameraPopoverHandle.js" name="CameraPopoverHandle">
|
|
|
|
<clobbers target="CameraPopoverHandle" />
|
|
|
|
</js-module>
|
2020-07-16 19:08:40 +08:00
|
|
|
|
2017-10-10 23:11:10 +08:00
|
|
|
<header-file src="src/osx/CDVCamera.h" />
|
|
|
|
<source-file src="src/osx/CDVCamera.m" />
|
2020-07-16 19:08:40 +08:00
|
|
|
|
2017-10-10 23:11:10 +08:00
|
|
|
<framework src="Quartz.framework" />
|
|
|
|
<framework src="AppKit.framework" />
|
|
|
|
</platform>
|
2020-07-16 19:08:40 +08:00
|
|
|
|
2013-04-02 06:35:43 +08:00
|
|
|
</plugin>
|