-
Notifications
You must be signed in to change notification settings - Fork 19
/
plugin.xml
26 lines (26 loc) · 1.31 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="com.phearme.cordovaplugin.ContentProviderPlugin" version="0.2.7">
<name>ContentProviderPlugin</name>
<description>A generic Cordova plugin for querying Content Providers on Android devices.</description>
<license>Apache 2.0</license>
<keywords>cordova,device,content,provider,contentprovider,android</keywords>
<js-module src="www/ContentProviderPlugin.js" name="ContentProviderPlugin">
<clobbers target="contentproviderplugin" />
</js-module>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="ContentProviderPlugin">
<param name="android-package" value="com.phearme.cordovaplugin.ContentProviderPlugin" />
</feature>
</config-file>
<source-file src="src/android/com/phearme/cordovaplugin/ContentProviderPlugin.java" target-dir="src/com/phearme/cordovaplugin" />
<!-- Following is an exemple of how to add permissions to the target AndroidManifest.xml -->
<!--
<config-file target="AndroidManifest.xml" parent="/manifest">
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
</config-file>
-->
</platform>
</plugin>