forked from limbuster/cordova-imagePicker
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathplugin.xml
66 lines (56 loc) · 2.34 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
<?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.3.0">
<name>ImagePicker</name>
<description>
This plugin allows selection of multiple images from the camera roll / gallery in a phonegap 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>
<!-- 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" />
<pods-config ios-min-version="8.0" use-frameworks="true">
</pods-config>
<pod name="GMImagePicker" git="https://github.com/nixplay/GMImagePicker" branch="develop"/>
<pod name="AFNetworking" />
<pod name="MRProgress" />
<pod name="MBProgressHUD" />
<pod name="DLFPhotosPicker" git="https://github.com/nixplay/DLFPhotosPicker"/>
<framework src="Accelerate.framework" />
<framework src="Security.framework" />
<framework src="Photos.framework" weak="true"/>
<framework src="SystemConfiguration.framework" />
<framework src="QuartzCore.framework" />
</platform>
<!-- android -->
<platform name="android">
<framework src="src/android/build.gradle" custom="true" type="gradleReference" />
<config-file target="res/xml/config.xml" parent="/*">
<feature name="ImagePicker">
<param name="android-package" value="com.synconset.ImagePicker"/>
</feature>
</config-file>
<source-file src="src/android/ImagePicker.java" target-dir="src/com/synconset" />
<source-file src="src/android/FakeR.java" target-dir="src/com/synconset" />
<source-file src="src/android/ImagePickerPluginActivity.java" target-dir="src/com/synconset" />
<config-file target="AndroidManifest.xml" parent="/manifest/application">
<activity android:name="com.synconset.ImagePickerPluginActivity" android:theme="@android:style/Theme.Holo.Light" android:screenOrientation="portrait">
</activity>
</config-file>
<source-file src="src/android/values/styles.xml" target-dir="res/values" />
</platform>
</plugin>