-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
35 lines (26 loc) · 1.33 KB
/
plugin.xml
File metadata and controls
35 lines (26 loc) · 1.33 KB
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="com.laurus.plugins.MediaScannerForSingleFilePlugin"
version="1.0.0">
<name>Media Scanner For Single File Plugin</name>
<description>This plugin scans given file to the Android filesystem so that they will show up to the OS and appear in the Gallery, Media Players, etc.</description>
<author>Kunal Mestri </author>
<keywords>android,image,photo library,mediascanner</keywords>
<engine>
<engine name="cordova" version=">=2.9.0" />
</engine>
<license>MIT</license>
<js-module src="www/MediaScannerForSingleFilePlugin.js" name="MediaScannerForSingleFilePlugin">
<clobbers target="window.MediaScannerForSingleFilePlugin" />
</js-module>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="MediaScannerForSingleFilePlugin" >
<param name="android-package" value="com.laurus.plugins.MediaScannerForSingleFilePlugin.MediaScannerForSingleFilePlugin"/>
</feature>
</config-file>
<source-file src="src/android/MediaScannerForSingleFilePlugin.java"
target-dir="src/com/laurus/plugins/MediaScannerForSingleFilePlugin" />
</platform>
</plugin>