forked from peteygao/MediaScannerPlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
35 lines (26 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
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="org.sfl.MediaScannerPlugin"
version="1.1.0">
<name>Media Scanner Plugin</name>
<description>This plugin scans recently added/downloaded files to the Android filesystem so that they will show up to the OS and appear in the Gallery, Media Players, etc.</description>
<author>Peter Gao - www.spacefluxlabs.com</author>
<keywords>android,image,photo library,mediascanner</keywords>
<engine>
<engine name="cordova" version=">=2.9.0" />
</engine>
<license>MIT</license>
<js-module src="www/MediaScannerPlugin.js" name="MediaScannerPlugin">
<clobbers target="window.MediaScannerPlugin" />
</js-module>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="MediaScannerPlugin" >
<param name="android-package" value="org.sfl.MediaScannerPlugin.MediaScannerPlugin"/>
</feature>
</config-file>
<source-file src="src/android/MediaScannerPlugin.java"
target-dir="src/org/sfl/MediaScannerPlugin" />
</platform>
</plugin>