forked from wymsee/cordova-imagePicker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
plugin.xml
91 lines (91 loc) · 7.04 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
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
<?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="@zenput/cordova-plugin-image-picker" version="23.11.2-H08M54S23">
<dependency id="@zenput/cordova-plugin-donkeyfont" version="22.3.7-H11M08S09"/>
<name>@zenput/cordova-plugin-image-picker</name>
<description>
Allows selection of multiple images from the camera roll/gallery in a Cordova app
</description>
<license>MIT</license>
<engines>
<engine name="cordova" version=">=3.0.0"/>
</engines>
<js-module src="www/imagepicker.js" name="ImagePicker">
<clobbers target="plugins.imagePicker"/>
</js-module>
<platform name="windows">
<js-module src="src/windows/ImagePickerProxy.js" name="ImagePickerProxy">
<merges target=""/>
</js-module>
</platform>
<platform name="ios">
<preference name="PHOTO_LIBRARY_USAGE_DESCRIPTION" default=" "/>
<config-file target="*-Info.plist" parent="NSPhotoLibraryUsageDescription">
<string>$PHOTO_LIBRARY_USAGE_DESCRIPTION</string>
</config-file>
<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/[email protected]"/>
</platform>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="ImagePicker">
<param name="android-package" value="com.synconset.ImagePicker"/>
</feature>
</config-file>
<config-file target="app/src/main/AndroidManifest.xml" parent="/manifest/application">
<activity android:label="@string/multi_app_name" android:name="com.synconset.MultiImageChooserActivity" android:theme="@android:style/Theme.Holo.Light"/>
</config-file>
<config-file target="app/src/main/AndroidManifest.xml" parent="/manifest">
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
</config-file>
<source-file src="src/android/com/synconset/ImagePicker/ImagePicker.java" target-dir="app/src/main/java/com/synconset"/>
<source-file src="src/android/com/synconset/ImagePicker/FakeR.java" target-dir="app/src/main/java/com/synconset"/>
<source-file src="src/android/Library/src/ImageFetcher.java" target-dir="app/src/main/java/com/synconset"/>
<source-file src="src/android/Library/src/MultiImageChooserActivity.java" target-dir="app/src/main/java/com/synconset"/>
<source-file src="src/android/Library/res/anim/image_pop_in.xml" target-dir="app/src/main/res/anim"/>
<source-file src="src/android/Library/res/drawable/grid_background.xml" target-dir="app/src/main/res/drawable"/>
<source-file src="src/android/Library/res/drawable-hdpi/image_bg.9.png" target-dir="app/src/main/res/drawable-hdpi"/>
<source-file src="src/android/Library/res/drawable-hdpi/loading_icon.png" target-dir="app/src/main/res/drawable-hdpi"/>
<source-file src="src/android/Library/res/drawable-mdpi/ic_action_discard_dark.png" target-dir="app/src/main/res/drawable-mdpi"/>
<source-file src="src/android/Library/res/drawable-mdpi/ic_action_discard_light.png" target-dir="app/src/main/res/drawable-mdpi"/>
<source-file src="src/android/Library/res/drawable-mdpi/ic_action_done_dark.png" target-dir="app/src/main/res/drawable-mdpi"/>
<source-file src="src/android/Library/res/drawable-mdpi/ic_action_done_light.png" target-dir="app/src/main/res/drawable-mdpi"/>
<source-file src="src/android/Library/res/drawable-xhdpi/ic_action_discard_dark.png" target-dir="app/src/main/res/drawable-xhdpi"/>
<source-file src="src/android/Library/res/drawable-xhdpi/ic_action_discard_light.png" target-dir="app/src/main/res/drawable-xhdpi"/>
<source-file src="src/android/Library/res/drawable-xhdpi/ic_action_done_dark.png" target-dir="app/src/main/res/drawable-xhdpi"/>
<source-file src="src/android/Library/res/drawable-xhdpi/ic_action_done_light.png" target-dir="app/src/main/res/drawable-xhdpi"/>
<source-file src="src/android/Library/res/layout/actionbar_custom_view_done_discard.xml" target-dir="app/src/main/res/layout"/>
<source-file src="src/android/Library/res/layout/actionbar_discard_button.xml" target-dir="app/src/main/res/layout"/>
<source-file src="src/android/Library/res/layout/actionbar_done_button.xml" target-dir="app/src/main/res/layout"/>
<source-file src="src/android/Library/res/layout/multiselectorgrid.xml" target-dir="app/src/main/res/layout"/>
<source-file src="src/android/Library/res/values/multiimagechooser_strings_en.xml" target-dir="app/src/main/res/values"/>
<source-file src="src/android/Library/res/values/MultiImageChooserTheme.xml" target-dir="app/src/main/res/values"/>
<source-file src="src/android/Library/res/values-de/multiimagechooser_strings_de.xml" target-dir="app/src/main/res/values-de"/>
<source-file src="src/android/Library/res/values-es/multiimagechooser_strings_es.xml" target-dir="app/src/main/res/values-es"/>
<source-file src="src/android/Library/res/values-fr/multiimagechooser_strings_fr.xml" target-dir="app/src/main/res/values-fr"/>
<source-file src="src/android/Library/res/values-hu/multiimagechooser_strings_hu.xml" target-dir="app/src/main/res/values-hu"/>
<source-file src="src/android/Library/res/values-ja/multiimagechooser_strings_ja.xml" target-dir="app/src/main/res/values-ja"/>
<source-file src="src/android/Library/res/values-ko/multiimagechooser_strings_ko.xml" target-dir="app/src/main/res/values-ko"/>
</platform>
</plugin>