-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
29 lines (22 loc) · 944 Bytes
/
plugin.xml
File metadata and controls
29 lines (22 loc) · 944 Bytes
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
<?xml version="1.0" encoding="utf-8"?>
<plugin
xmlns="http://www.phonegap.com/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="fr.quickfix.androidfoldersplugin"
version="0.0.1">
<name>AndroidFoldersPlugin</name>
<description>Get android special folders path</description>
<license></license>
<platform name="android">
<js-module src="www/androidfoldersplugin.js" name="androidfoldersplugin">
<clobbers target="androidfoldersplugin" />
</js-module>
<source-file src="src/android/src/fr/quickfix/androidfoldersplugin/AndroidFoldersPlugin.java"
target-dir="src/fr/quickfix/androidfoldersplugin"/>
<config-file target="res/xml/config.xml" parent="/widget">
<feature name="AndroidFoldersPlugin">
<param name="android-package" value="fr.quickfix.androidfoldersplugin.AndroidFoldersPlugin"/>
</feature>
</config-file>
</platform>
</plugin>