-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathplugin.xml
37 lines (37 loc) · 1.68 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin id="cordova-plugin-library-helper" version="1.0.4" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<author>Busivid Team</author>
<description>Library Helper is a cordova plugin to help insert videos or images into the native gallery. Supports IOS and Android</description>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<js-module name="LibraryHelper" src="www/LibraryHelper.js">
<clobbers target="LibraryHelper" />
</js-module>
<keywords>cordova, gallery, video, image</keywords>
<license>MIT</license>
<name>cordova-plugin-library-helper</name>
<platform name="android">
<config-file parent="/*" target="config.xml">
<feature name="LibraryHelper">
<param name="android-package" value="com.busivid.cordova.libraryhelper.LibraryHelper"/>
</feature>
</config-file>
<source-file src="src/android/LibraryHelper.java" target-dir="src/com/busivid/cordova/libraryhelper" />
</platform>
<platform name="ios">
<config-file parent="/*" target="config.xml">
<feature name="LibraryHelper">
<param name="ios-package" value="LibraryHelper"/>
</feature>
</config-file>
<config-file target="*-Info.plist" parent="NSPhotoLibraryUsageDescription">
<string>$PHOTO_LIBRARY_USAGE_DESCRIPTION</string>
</config-file>
<header-file src="src/ios/ALAssetsLibrary+CustomPhotoAlbum.h" />
<header-file src="src/ios/LibraryHelper.h" />
<preference name="PHOTO_LIBRARY_USAGE_DESCRIPTION" default="Save media to your Camera Roll" />
<source-file src="src/ios/ALAssetsLibrary+CustomPhotoAlbum.m" />
<source-file src="src/ios/LibraryHelper.m" />
</platform>
</plugin>