| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?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="cordova-plugin-image-processing"
- version="0.0.1">
-
- <name>Image Processing</name>
- <description>Cordova Image Processing Plugin</description>
- <license>Apache 2.0</license>
- <keywords>cordova,image,vision,processing</keywords>
- <repo>http://h2779862.stratoserver.net:6000/cordova/cordova-plugin-image-processing.git</repo>
- <issue>http://h2779862.stratoserver.net:8080/cordova/cordova-plugin-image-processing/issues</issue>
-
- <js-module src="www/ImageProcessing.js" name="ImageProcessing">
- <clobbers target="window.imageProcessing" />
- </js-module>
-
- <engines>
- <engine name="cordova" version=">=8.0.0" />
- </engines>
-
- <!-- android -->
- <platform name="android">
- <config-file target="res/xml/config.xml" parent="/*">
- <feature name="ImageProcessing">
- <param name="android-package" value="org.apache.cordova.imageprocessing.ImageProcessing"/>
- </feature>
- </config-file>
- <config-file target="AndroidManifest.xml" parent="/*">
- </config-file>
- <source-file src="src/android/ImageProcessing.java" target-dir="src/org/apache/cordova/imageprocessing" />
- </platform>
- <!-- ios -->
- <platform name="ios">
- <config-file parent="/*" target="config.xml">
- <feature name="ImageProcessing">
- <param name="ios-package" value="CDVImageProcessing" />
- </feature>
- </config-file>
- <header-file src="src/ios/CDVImageProcessing.h" />
- <source-file src="src/ios/CDVImageProcessing.m" />
- </platform>
- </plugin>
|