-
Notifications
You must be signed in to change notification settings - Fork 5
/
plugin.xml
19 lines (19 loc) · 1.03 KB
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-webviewselector" version="0.3.2">
<name>WebViewSelector</name>
<platform name="android">
<js-module src="www/WebViewSelector.js" name="WebViewSelector">
<clobbers target="cordova.plugins.WebViewSelector"/>
</js-module>
<config-file target="res/xml/config.xml" parent="/*">
<feature name="WebViewSelector">
<param name="android-package" value="org.apache.cordova.WebViewSelector" />
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/*">
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="18"/>
</config-file>
<source-file src="src/android/WebViewSelector.java" target-dir="CordovaLib/src/org/apache/cordova" />
<hook src="scripts/androidWebViewSelectorHook.js" type="after_prepare" />
</platform>
</plugin>