-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathplugin.xml
38 lines (30 loc) · 1.08 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
id="com.buunguyen.PhotoLibrary"
version="0.2.0">
<name>PhotoLibrary</name>
<author>Buu Nguyen</author>
<description>
This plugin supports saving images and videos to photo library.
Currently support iOS only.
</description>
<keywords>photo library,images</keywords>
<license>MIT</license>
<repo>https://github.com/buunguyen/cordova-photo-library.git</repo>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<js-module src="www/PhotoLibrary.js" name="PhotoLibrary">
<clobbers target="cordova.plugins.PhotoLibrary" />
</js-module>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="PhotoLibrary">
<param name="ios-package" value="PhotoLibrary" onload="true" />
</feature>
</config-file>
<header-file src="src/ios/PhotoLibrary.h" />
<source-file src="src/ios/PhotoLibrary.m" compiler-flags="-fno-objc-arc" />
<framework src="AssetsLibrary.framework" />
</platform>
</plugin>