mirror of
https://gitee.com/shuto/cordova-imagePicker.git
synced 2026-02-17 00:00:06 +08:00
61 lines
2.1 KiB
XML
61 lines
2.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
id="com.synconset.imagepicker"
|
|
version="1.0.0">
|
|
|
|
<name>ImagePicker</name>
|
|
|
|
<description>
|
|
This plugin allows selection of multiple images from the camera roll / gallery in a phonegap app
|
|
</description>
|
|
|
|
<engines>
|
|
<engine name="cordova" version=">=3.0.0" />
|
|
</engines>
|
|
|
|
<js-module src="www/imagepicker.js" name="ImagePicker">
|
|
<clobbers target="plugins.imagePicker" />
|
|
</js-module>
|
|
|
|
<!-- ios -->
|
|
<platform name="ios">
|
|
<config-file target="config.xml" parent="/*">
|
|
<feature name="ImagePicker">
|
|
<param name="ios-package" value="SOSPicker"/>
|
|
</feature>
|
|
</config-file>
|
|
|
|
<header-file src="src/ios/SOSPicker.h" />
|
|
<source-file src="src/ios/SOSPicker.m" />
|
|
|
|
<header-file src="src/ios/ELCImagePicker/ELCAlbumPickerController.h" />
|
|
<source-file src="src/ios/ELCImagePicker/ELCAlbumPickerController.m" />
|
|
|
|
<header-file src="src/ios/ELCImagePicker/ELCAsset.h" />
|
|
<source-file src="src/ios/ELCImagePicker/ELCAsset.m" />
|
|
|
|
<header-file src="src/ios/ELCImagePicker/ELCAssetCell.h" />
|
|
<source-file src="src/ios/ELCImagePicker/ELCAssetCell.m" />
|
|
|
|
<header-file src="src/ios/ELCImagePicker/ELCAssetPickerFilterDelegate.h" />
|
|
<header-file src="src/ios/ELCImagePicker/ELCAssetSelectionDelegate.h" />
|
|
|
|
<header-file src="src/ios/ELCImagePicker/ELCAssetTablePicker.h" />
|
|
<source-file src="src/ios/ELCImagePicker/ELCAssetTablePicker.m" />
|
|
|
|
<header-file src="src/ios/ELCImagePicker/ELCImagePickerController.h" />
|
|
<source-file src="src/ios/ELCImagePicker/ELCImagePickerController.m" />
|
|
|
|
<resource-file src="src/ios/ELCImagePicker/Resources/ELCAlbumPickerController.xib" />
|
|
<resource-file src="src/ios/ELCImagePicker/Resources/ELCAssetPicker.xib" />
|
|
<resource-file src="src/ios/ELCImagePicker/Resources/ELCAssetTablePicker.xib" />
|
|
<resource-file src="src/ios/ELCImagePicker/Resources/Overlay.png" />
|
|
<resource-file src="src/ios/ELCImagePicker/Resources/Overlay@2x.png" />
|
|
</platform>
|
|
|
|
<!-- android -->
|
|
<platform name="android">
|
|
</platform>
|
|
</plugin>
|