This repository has been archived by the owner on Jan 29, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
plugin.xml
51 lines (41 loc) · 2.15 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
<?xml version='1.0' encoding='utf-8'?>
<plugin id="cordova-plugin-advanced-imagepicker" version="1.6.2" xmlns="http://apache.org/cordova/ns/plugins/1.0">
<name>AdvancedImagePicker</name>
<description>Cordova Plugin for an advanced (multiple) ImagePicker</description>
<repo>https://github.com/EinfachHans/cordova-plugin-advanced-imagepicker</repo>
<issue>https://github.com/EinfachHans/cordova-plugin-advanced-imagepicker/issues</issue>
<license>MIT</license>
<js-module name="AdvancedImagePicker" src="www/AdvancedImagePicker.js">
<clobbers target="window.AdvancedImagePicker"/>
</js-module>
<platform name="android">
<config-file parent="/*" target="res/xml/config.xml">
<feature name="AdvancedImagePicker">
<param name="android-package" value="de.einfachhans.AdvancedImagePicker.AdvancedImagePicker"/>
</feature>
</config-file>
<source-file src="src/android/AdvancedImagePicker.java" target-dir="src/de/einfachhans/AdvancedImagePicker"/>
<source-file src="src/android/AdvancedImagePickerErrorCodes.java" target-dir="src/de/einfachhans/AdvancedImagePicker"/>
<framework src="src/android/build.gradle" custom="true" type="gradleReference"/>
<preference name="ANDROID_IMAGE_PICKER_VERSION" default="1.2.8" />
<framework src="io.github.ParkSangGwon:tedimagepicker:$ANDROID_IMAGE_PICKER_VERSION"/>
</platform>
<platform name="ios">
<config-file parent="/*" target="config.xml">
<feature name="AdvancedImagePicker">
<param name="ios-package" value="AdvancedImagePicker"/>
</feature>
</config-file>
<header-file src="src/ios/AdvancedImagePicker-Bridging-Header.h" />
<source-file src="src/ios/AdvancedImagePicker.swift" />
<podspec>
<config>
<source url="https://cdn.cocoapods.org/"/>
</config>
<pods use-frameworks="true">
<pod name="YPImagePicker" spec="5.2.1"/>
</pods>
</podspec>
<dependency id="cordova-plugin-add-swift-support" version="2.0.2"/>
</platform>
</plugin>