-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathplugin.xml
50 lines (42 loc) · 1.97 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
<?xml version='1.0' encoding='utf-8'?>
<plugin id="cordova-plugin-gallery-refresh" version="1.0.55" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<name>GalleryRefresh</name>
<description>Mobile Device gallery refresh after image file download.</description>
<license>MIT</license>
<author>KwanUng Park - [email protected]</author>
<keywords>image,photo library,gallery,refresh,download</keywords>
<repo>https://github.com/pouu69/cordova-plugin-gallery-refresh.git</repo>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<js-module name="GalleryRefresh" src="www/GalleryRefresh.js">
<clobbers target="galleryRefresh" />
</js-module>
<platform name="android">
<config-file parent="/*" target="res/xml/config.xml">
<feature name="GalleryRefresh">
<param name="android-package" value="com.ung.galleryrefresh.GalleryRefresh" />
</feature>
</config-file>
<config-file parent="/*" target="AndroidManifest.xml" />
<source-file src="src/android/GalleryRefresh.java" target-dir="src/com/ung/galleryrefresh/GalleryRefresh" />
</platform>
<platform name="ios">
<config-file parent="/*" target="config.xml">
<feature name="GalleryRefresh">
<param name="ios-package" value="GalleryRefresh" />
<param name="onload" value="true" />
</feature>
</config-file>
<header-file src="src/ios/GalleryRefresh.h" />
<source-file src="src/ios/GalleryRefresh.m" compiler-flags="-fno-objc-arc"/>
<preference name="CAMERA_USAGE_DESCRIPTION" default=" " />
<config-file target="*-Info.plist" parent="NSCameraUsageDescription">
<string>$CAMERA_USAGE_DESCRIPTION</string>
</config-file>
<preference name="PHOTOLIBRARY_USAGE_DESCRIPTION" default=" " />
<config-file target="*-Info.plist" parent="NSPhotoLibraryUsageDescription">
<string>$PHOTOLIBRARY_USAGE_DESCRIPTION</string>
</config-file>
</platform>
</plugin>