-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
36 lines (36 loc) · 1.65 KB
/
plugin.xml
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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-redcrop" version="0.0.874">
<name>CropPlugin with AR support</name>
<description>
Crop an image in a Cordova app with support for aspect ratio. This version is still super buggy and I don't recommend downloading it. Based on https://github.com/jeduan/cordova-plugin-crop
</description>
<license>ISC</license>
<engines>
<engine name="cordova-ios" version=">=3.5.0"/>
</engines>
<js-module src="www/crop.js" name="CropPlugin">
<clobbers target="plugins.crop"/>
</js-module>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="CropPlugin">
<param name="ios-package" value="CTCrop"/>
</feature>
</config-file>
<header-file src="src/ios/CTCrop.h"/>
<header-file src="src/ios/Lib/PECropRectView.h"/>
<header-file src="src/ios/Lib/PECropView.h"/>
<header-file src="src/ios/Lib/PECropViewController.h"/>
<header-file src="src/ios/Lib/PEResizeControl.h"/>
<header-file src="src/ios/Lib/UIImage+PECrop.h"/>
<source-file src="src/ios/CTCrop.m"/>
<source-file src="src/ios/Lib/PECropRectView.m"/>
<source-file src="src/ios/Lib/PECropView.m"/>
<source-file src="src/ios/Lib/PECropViewController.m"/>
<source-file src="src/ios/Lib/PEResizeControl.m"/>
<source-file src="src/ios/Lib/UIImage+PECrop.m"/>
<resource-file src="src/ios/Lib/PEPhotoCropEditor.bundle"/>
<framework src="QuartzCore.framework"/>
<framework src="AVFoundation.framework"/>
</platform>
</plugin>