This repository has been archived by the owner on Aug 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathplugin.xml
53 lines (38 loc) · 1.78 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?xml version="1.0" encoding="UTF-8"?>
<plugin id="cordova-plugin-cache-clear" version="1.3.7"
xmlns="http://www.phonegap.com/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android">
<name>Cordova Cache Clear</name>
<keywords>cordova,webview,cache,clear,android,ios</keywords>
<description>This is a WebView cache plugin for Cordova 6.1.1+ supporting Android (>=4.1) and iOS(>=6.0). It allows to clear the cordova webview cache.</description>
<repo>https://github.com/anrip/cordova-plugin-cache-clear.git</repo>
<issue>https://github.com/anrip/cordova-plugin-cache-clear/issues</issue>
<author email="[email protected]" href="http://www.anrip.com">Anrip Wong</author>
<license>MIT</license>
<engines>
<engine name="cordova" version=">=6.1.1" />
</engines>
<platform name="android">
<js-module src="www/CacheClear.js" name="CacheClear">
<clobbers target="CacheClear" />
</js-module>
<config-file target="res/xml/config.xml" parent="/*">
<feature name="CacheClear" >
<param name="android-package" value="com.anrip.cordova.CacheClear"/>
</feature>
</config-file>
<source-file src="src/android/CacheClear.java" target-dir="src/com/anrip/cordova" />
</platform>
<platform name="ios">
<js-module src="www/CacheClear.js" name="CacheClear">
<clobbers target="CacheClear" />
</js-module>
<config-file target="config.xml" parent="/*">
<feature name="CacheClear">
<param name="ios-package" value="CacheClear" />
</feature>
</config-file>
<header-file src="src/ios/CacheClear.h" />
<source-file src="src/ios/CacheClear.m" />
</platform>
</plugin>