forked from buunguyen/cordova-photo-library
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathplugin.xml
39 lines (30 loc) · 1.21 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
id="cordova-photo-library"
version="1.1.4">
<name>PhotoLibrary</name>
<description>
This plugin supports saving images and videos to photo library.
Currently support iOS only.
</description>
<keywords>cordova,phonegap,datepicker,photo library,images,videos,ios</keywords>
<keywords>photo library,images</keywords>
<license>MIT</license>
<repo>https://github.com/CoSchedule/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="Photos.framework"/>
</platform>
</plugin>