-
Notifications
You must be signed in to change notification settings - Fork 12
/
plugin.xml
32 lines (25 loc) · 1.12 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
<?xml version="1.0" encoding="utf-8"?>
<plugin xmlns:android="http://schemas.android.com/apk/res/android"
id="cordova-plugin-saf-mediastore" version="0.7.0"
xmlns="http://www.w3.org/ns/plugins">
<name>cordova-plugin-saf-mediastore</name>
<engines>
<engine name="cordova" version=">=3.4.0"/>
</engines>
<asset src="www/safMediastore.js" target="js/safMediastore.js"/>
<js-module name="safMediastore" src="www/safMediastore.js">
<clobbers target="cordova.plugins.safMediastore"/>
</js-module>
<platform name="android">
<config-file parent="/*" target="res/xml/config.xml">
<feature name="SafMediastore">
<param name="android-package" value="com.customautosys.saf_mediastore.SafMediastore"/>
</feature>
</config-file>
<config-file parent="/manifest" target="AndroidManifest.xml">
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
</config-file>
<source-file src="src/android/com/customautosys/saf_mediastore/SafMediastore.java" target-dir="src/com/customautosys/saf_mediastore/"/>
</platform>
</plugin>