-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
22 lines (22 loc) · 975 Bytes
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="UTF-8"?>
<plugin id="com.engage.cordova-nsurl-cache-clear" version="0.0.1" xmlns="http://www.phonegap.com/ns/plugins/1.0">
<name>CordovaNSURLCacheClear</name>
<description>Cordova clear NSURL cache plugin</description>
<engines>
<engine name="cordova" version=">=3.4.0"/>
</engines>
<asset src="www/nsurl-cache-clear.js" target="js/nsurl-cache-clear.js"/>
<js-module name="CordovaNSURLCacheClear" src="www/nsurl-cache-clear.js">
<clobbers target="window.nsurlcache"/>
</js-module>
<!-- ios -->
<platform name="ios">
<config-file parent="/*" target="config.xml">
<feature name="CordovaNSURLCacheClear">
<param name="ios-package" value="CordovaNSURLCacheClear"/>
</feature>
</config-file>
<header-file src="src/ios/CordovaNSURLCacheClear.h"/>
<source-file src="src/ios/CordovaNSURLCacheClear.m"/>
</platform>
</plugin>