plugin.xml 10 KB
Newer Older
李晓兵's avatar
李晓兵 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
<?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"
        xmlns:rim="http://www.blackberry.com/ns/widgets"
        id="cordova-plugin-camera"
        version="2.4.0">
  <name>Camera</name>
  <description>Cordova Camera Plugin</description>
  <license>Apache 2.0</license>
  <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>

  <dependency id="cordova-plugin-compat" version="^1.1.0"/>

  <js-module src="www/CameraConstants.js" name="Camera">
    <clobbers target="Camera"/>
  </js-module>

  <js-module src="www/CameraPopoverOptions.js" name="CameraPopoverOptions">
    <clobbers target="CameraPopoverOptions"/>
  </js-module>


  <js-module src="www/Camera.js" name="camera">
    <clobbers target="navigator.camera"/>
  </js-module>

  <!-- 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">
      <runs/>
    </js-module>
  </platform>

  <!-- 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
        android:name="android.support.v4.content.FileProvider"
        android:authorities="${applicationId}.provider"
        android:exported="false"
        android:grantUriPermissions="true">
        <meta-data
          android:name="android.support.FILE_PROVIDER_PATHS"
          android:resource="@xml/provider_paths"/>
      </provider>
    </config-file>

    <source-file src="src/android/CameraLauncher.java" target-dir="src/org/apache/cordova/camera"/>
    <source-file src="src/android/CordovaUri.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"/>
    <source-file src="src/android/xml/provider_paths.xml" target-dir="res/xml"/>

    <js-module src="www/CameraPopoverHandle.js" name="CameraPopoverHandle">
      <clobbers target="CameraPopoverHandle"/>
    </js-module>

    <framework src="com.android.support:support-v4:24.1.1+"/>

  </platform>

  <!-- 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>

  <!-- ubuntu -->
  <platform name="ubuntu">
    <config-file target="config.xml" parent="/*">
      <feature name="Camera">
        <param policy_group="camera" policy_version="1"/>
      </feature>
    </config-file>
    <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 -->
  <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"/>

    <config-file parent="NSCameraUsageDescription" target="*-Info.plist">
      <string>我们将在拍照模块使用您的相机</string>
    </config-file>
    <config-file parent="NSPhotoLibraryUsageDescription" target="*-Info.plist">
      <string>我们将在照片模块访问您的相册</string>
    </config-file>
    <config-file parent="NSLocationWhenInUseUsageDescription" target="*-Info.plist">
      <string>我们将在位置模块使用您的定位</string>
    </config-file>
    <config-file parent="NSPhotoLibraryAddUsageDescription" target="*-Info.plist">
      <string>我们将在照片模块访问您的相册</string>
    </config-file>

  </platform>

  <!-- 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>
      <rim:permit>use_camera</rim:permit>
    </config-file>
    <js-module src="www/CameraPopoverHandle.js" name="CameraPopoverHandle">
      <clobbers target="CameraPopoverHandle"/>
    </js-module>
    <asset src="www/blackberry10/assets" target="chrome"/>
  </platform>

  <!-- wp7 -->
  <platform name="wp7">
    <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"/>
    </config-file>

    <source-file src="src/wp/Camera.cs"/>


    <js-module src="www/CameraPopoverHandle.js" name="CameraPopoverHandle">
      <clobbers target="CameraPopoverHandle"/>
    </js-module>
  </platform>

  <!-- 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"/>
    </config-file>

    <source-file src="src/wp/Camera.cs"/>

    <js-module src="www/CameraPopoverHandle.js" name="CameraPopoverHandle">
      <clobbers target="CameraPopoverHandle"/>
    </js-module>
  </platform>

  <!-- windows8 -->
  <platform name="windows8">

    <config-file target="package.appxmanifest" parent="/Package/Capabilities">
      <Capability Name="picturesLibrary"/>
      <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>

  <!-- 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>

</plugin>